summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/lexparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/lexparse.c b/src/config/lexparse.c
index 99693a5..d541888 100644
--- a/src/config/lexparse.c
+++ b/src/config/lexparse.c
@@ -333,7 +333,7 @@ static inline void process_line (char const *s, size_t const *word, size_t n, st
break ;
case T_DOMAIN :
if (n != 1)
- strerr_dief8x(1, "too", n > 1 ? "many" : "few", " arguments to directive ", "domain", " in file ", g.storage.s + md->filepos, " line ", md->linefmt) ;
+ strerr_dief8x(1, "too ", n > 1 ? "many" : "few", " arguments to directive ", "domain", " in file ", g.storage.s + md->filepos, " line ", md->linefmt) ;
domain->len = 0 ;
if (!stralloc_cats(domain, s + *word)) dienomem() ;
while (domain->len && (domain->s[domain->len - 1] == '/' || domain->s[domain->len - 1] == '.')) domain->len-- ;