diff options
author | Steve Hill <quagga@cheesy.sackheads.org> | 2009-07-22 17:18:56 +0000 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2010-02-04 21:28:37 +0100 |
commit | 6c9463d3f240f79fd46665c3b21e5152e51804f5 (patch) | |
tree | 36fc845873ccddc8624c077057096a57b55e48c8 /lib/command.h | |
parent | 31aaf4f14898cd9076aa9d128ca1aef6c73db37c (diff) | |
download | quagga-6c9463d3f240f79fd46665c3b21e5152e51804f5.tar.bz2 quagga-6c9463d3f240f79fd46665c3b21e5152e51804f5.tar.xz |
lib: Improve error reporting from broken config files
cleans up a few items with error reporting at startup:
- Line numbers are now reported alongside error text
- All errors now go to stderr instead of some stderr and some stdout
- The vty buffer is flushed so that errors now come out in the right order
Diffstat (limited to 'lib/command.h')
-rw-r--r-- | lib/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command.h b/lib/command.h index 1275efee..541b259a 100644 --- a/lib/command.h +++ b/lib/command.h @@ -341,7 +341,7 @@ extern void cmd_free_strvec (vector); extern vector cmd_describe_command (vector, struct vty *, int *status); extern char **cmd_complete_command (vector, struct vty *, int *status); extern const char *cmd_prompt (enum node_type); -extern int config_from_file (struct vty *, FILE *); +extern int config_from_file (struct vty *, FILE *, unsigned int *line_num); extern enum node_type node_parent (enum node_type); extern int cmd_execute_command (vector, struct vty *, struct cmd_element **, int); extern int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **); |