remove undocumented option

This commit is contained in:
marschap
2006-04-29 20:01:37 +00:00
parent c52083f2a5
commit 920d4e51d4
+1 -4
View File
@@ -116,7 +116,7 @@ int process_command_line(int argc, char **argv)
/* No error output from getopt */
opterr = 0;
while ((c = getopt(argc, argv, "c:O:a:p:fr:s:h")) > 0) {
while ((c = getopt(argc, argv, "c:a:p:fr:s:h")) > 0) {
char *end;
int temp_int;
@@ -124,9 +124,6 @@ int process_command_line(int argc, char **argv)
case 'c':
configfile = strdup(optarg);
break;
case 'O':
config_read_string(progname, optarg);
break;
case 'a':
address = strdup(optarg);
break;