From 6fdbe014129729e009c3e8ce209aced812de755f Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 21 Jul 2011 13:11:15 +1000 Subject: [PATCH] Remove the nil arguments check to allow starting without parameters. --- main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.c b/main.c index fb892019..9ea5e34c 100644 --- a/main.c +++ b/main.c @@ -2666,8 +2666,6 @@ int main (int argc, char *argv[]) opt_register_table(opt_cmdline_table, "Options for command line only"); - if (argc == 1) - quit(1, "No arguments specified"); opt_parse(&argc, argv, applog_and_exit); if (argc != 1) quit(1, "Unexpected extra commandline arguments");