From: Martin Mares Date: Wed, 4 Mar 2009 11:33:49 +0000 (+0100) Subject: Config: Fixed an error message text. X-Git-Tag: holmes-import~31 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=c861307abf3c23c23d746d534ecd79a5b1fb1cce;p=libucw.git Config: Fixed an error message text. The "include" command is no longer called "input". --- diff --git a/ucw/conf-input.c b/ucw/conf-input.c index fed6a828..fffc6d57 100644 --- a/ucw/conf-input.c +++ b/ucw/conf-input.c @@ -223,7 +223,7 @@ parse_fastbuf(const char *name_fb, struct fastbuf *fb, uns depth) else if (depth > 8) err = "Too many nested files"; else if (*line && *line != '#') // because the contents of line_buf is not re-entrant and will be cleared - err = "The input command must be the last one on a line"; + err = "The include command must be the last one on a line"; if (err) goto error; struct fastbuf *new_fb = bopen_try(pars[0], O_RDONLY, 1<<14);