summaryrefslogtreecommitdiff
path: root/ospfd
diff options
context:
space:
mode:
authorJeremy Jackson <jerj@coplanar.net>2008-12-28 12:57:42 -0500
committerPaul Jakma <paul@quagga.net>2009-06-18 22:11:41 +0100
commitc77cffdd69bf08ed54e390a3485cbd5024836a9a (patch)
tree42225904923a4b3457edd13a0eb84f0ea8581441 /ospfd
parentc546afaed229106c2fcb54b57906414b9503dcc9 (diff)
[daemons/cleanup] Remove disabled log_mode argument support.
* */*main.c: Seems that the actual code was removed previously, but the argument processing code remained.
Diffstat (limited to 'ospfd')
-rw-r--r--ospfd/ospf_main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c
index 1a200a8f..2dd997e8 100644
--- a/ospfd/ospf_main.c
+++ b/ospfd/ospf_main.c
@@ -80,7 +80,6 @@ struct option longopts[] =
{ "daemon", no_argument, NULL, 'd'},
{ "config_file", required_argument, NULL, 'f'},
{ "pid_file", required_argument, NULL, 'i'},
- { "log_mode", no_argument, NULL, 'l'},
{ "dryrun", no_argument, NULL, 'C'},
{ "help", no_argument, NULL, 'h'},
{ "vty_addr", required_argument, NULL, 'A'},
@@ -215,7 +214,7 @@ main (int argc, char **argv)
{
int opt;
- opt = getopt_long (argc, argv, "dlf:i:hA:P:u:g:avC", longopts, 0);
+ opt = getopt_long (argc, argv, "df:i:hA:P:u:g:avC", longopts, 0);
if (opt == EOF)
break;