From 892b07c64c7f1bbaa39bba45a47b95a0b3c43c2b Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Thu, 29 Nov 2018 06:46:08 +0100 Subject: [PATCH] oops. broke test again with another case of too many periods. --- src/report.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/report.c b/src/report.c index eadf40354..8486d9e09 100644 --- a/src/report.c +++ b/src/report.c @@ -1027,7 +1027,9 @@ static void report_region_description(struct stream *out, const region * r, fact } } } - sbs_strcat(&sbs, "."); + if (dh) { + sbs_strcat(&sbs, "."); + } /* Spezielle Richtungen */ for (a = a_find(r->attribs, &at_direction); a && a->type == &at_direction; a = a->next) {