]> mj.ucw.cz Git - libucw.git/commitdiff
Config: Fixed an error message text.
authorMartin Mares <mj@ucw.cz>
Wed, 4 Mar 2009 11:33:49 +0000 (12:33 +0100)
committerMartin Mares <mj@ucw.cz>
Wed, 4 Mar 2009 11:33:49 +0000 (12:33 +0100)
The "include" command is no longer called "input".

ucw/conf-input.c

index fed6a8282b45feb649ed7c2708289ac1f23beed0..fffc6d57e5cd5d8088755bb9c0730768c63cc421 100644 (file)
@@ -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);