From 8a2b0d6196fceb41d862acdaf1234b376bd9c19c Mon Sep 17 00:00:00 2001 From: david Date: Mon, 19 Dec 2011 22:41:44 +0000 Subject: [PATCH] It's not a fatal error not to have nmap-update.conf. --- nmap-update/nmap-update.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nmap-update/nmap-update.c b/nmap-update/nmap-update.c index 5b670c3cb..5532b66ca 100644 --- a/nmap-update/nmap-update.c +++ b/nmap-update/nmap-update.c @@ -734,10 +734,7 @@ int main(int argc, char *argv[]) if (options.verbose) summarize_options(); - if (read_config_file(options.conf_filename) == -1) { - fprintf(stderr, "Can't read config file %s.\n", options.conf_filename); - exit(1); - } + read_config_file(options.conf_filename); successful_channel = try_channels(options.channels, options.num_channels);