From 6c9463d3f240f79fd46665c3b21e5152e51804f5 Mon Sep 17 00:00:00 2001 From: Steve Hill Date: Wed, 22 Jul 2009 17:18:56 +0000 Subject: 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 --- lib/command.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/command.c') diff --git a/lib/command.c b/lib/command.c index e79d462e..ce7a989f 100644 --- a/lib/command.c +++ b/lib/command.c @@ -2264,13 +2264,15 @@ cmd_execute_command_strict (vector vline, struct vty *vty, /* Configration make from file. */ int -config_from_file (struct vty *vty, FILE *fp) +config_from_file (struct vty *vty, FILE *fp, unsigned int *line_num) { int ret; + *line_num = 0; vector vline; while (fgets (vty->buf, VTY_BUFSIZ, fp)) { + ++(*line_num); vline = cmd_make_strvec (vty->buf); /* In case of comment line */ -- cgit v1.2.3