diff options
author | paul <paul> | 2003-08-10 02:51:22 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-10 02:51:22 +0000 |
commit | ad63404c8c9231a75759a0e5c981f9027762befe (patch) | |
tree | 2ebdc876629ccb97e49341a26737703bdc56013e /ospf6d/ospf6_main.c | |
parent | 62b118c137914660e08d5203b5bba7c8814b6e6d (diff) | |
download | quagga-ad63404c8c9231a75759a0e5c981f9027762befe.tar.bz2 quagga-ad63404c8c9231a75759a0e5c981f9027762befe.tar.xz |
2003-08-10 amir <amir@datacore.ch>
* Add missing 'i' to getopts, short form of --pid_file.
see http://bugzilla.quagga.net/show_bug.cgi?id=25
Diffstat (limited to 'ospf6d/ospf6_main.c')
-rw-r--r-- | ospf6d/ospf6_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index 519cde77..1279b5ba 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -254,7 +254,7 @@ main (int argc, char *argv[], char *envp[]) /* Command line argument treatment. */ while (1) { - opt = getopt_long (argc, argv, "df:hp:A:P:u:v", longopts, 0); + opt = getopt_long (argc, argv, "df:i:hp:A:P:u:v", longopts, 0); if (opt == EOF) break; |