Report config file name on error

Change-Id: If3f97452e4defb5c8dd540dd75045d37824fb305
This commit is contained in:
Max 2018-11-22 13:29:25 +01:00
parent 8ccc930cc8
commit 77be9ca058
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ int main(int argc, char **argv)
rc = vty_read_config_file(config_file, NULL);
if (rc < 0) {
fprintf(stderr, "Failed to parse the config file\n");
fprintf(stderr, "Failed to parse the config file %s\n", config_file);
exit(2);
}