Merge commit 'origin/master'

This commit is contained in:
Harald Welte 2009-08-10 11:28:33 +02:00
commit ddfdef1529
1 changed files with 3 additions and 1 deletions

View File

@ -1069,8 +1069,10 @@ static int bootstrap_network(void)
telnet_init(gsmnet, 4242);
rc = vty_read_config_file(config_file);
if (rc < 0)
if (rc < 0) {
fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
return rc;
}
register_signal_handler(SS_NM, nm_sig_cb, NULL);