diff options
author | hasso <hasso> | 2004-06-20 19:54:37 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-06-20 19:54:37 +0000 |
commit | b8dd3c3f2e49a515c3a9ded5a6ddd856e4f2dff0 (patch) | |
tree | 886fa07595a2a0674425d0db9aba5a646c0cf07c /ospf6d/ospf6_main.c | |
parent | 406ac0b3dda8d8c287f12b306d144ad77819ef46 (diff) | |
download | quagga-b8dd3c3f2e49a515c3a9ded5a6ddd856e4f2dff0.tar.bz2 quagga-b8dd3c3f2e49a515c3a9ded5a6ddd856e4f2dff0.tar.xz |
Removing code which looked at current dir for config file before attempting
to read system one.
Diffstat (limited to 'ospf6d/ospf6_main.c')
-rw-r--r-- | ospf6d/ospf6_main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index c22e90bb..ffdad10b 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -79,7 +79,6 @@ struct option longopts[] = }; /* Configuration file and directory. */ -char config_current[] = OSPF6_DEFAULT_CONFIG; char config_default[] = SYSCONFDIR OSPF6_DEFAULT_CONFIG; /* ospf6d program name. */ @@ -291,7 +290,7 @@ main (int argc, char *argv[], char *envp[]) sort_node (); /* parse config file */ - vty_read_config (config_file, config_current, config_default); + vty_read_config (config_file, config_default); if (daemon_mode) daemon (0, 0); |