diff options
author | paul <paul> | 2003-08-14 05:32:12 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-14 05:32:12 +0000 |
commit | d81fadfd889aa7bc657fa19752344a585e8c274a (patch) | |
tree | 26a7026afc547f4ac82ea4d84394109323cbb246 /ospfd | |
parent | e835d10483f833c8e6bb2957ea10a2f7a9cb4888 (diff) |
2003-08-14 Paul Jakma <paul@dishone.st>
* zebra/main.c: Fixup ZEBRA_{GROUP,USER} defines ->
QUAGGA_{USER,GROUP}
* bgpd/bgp_main.c: ditto
* ospf6d/ospf6_main.c: ditto
* ospfd/ospf_main.c: ditto
* ripd/rip_main.c: ditto
* ripngd/ripng_main.c: ditto
* zebra/main.c: ditto
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index 1da285bd..51fa7b58 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -60,9 +60,9 @@ zebra_capabilities_t _caps_p [] = struct zebra_privs_t ospfd_privs = { -#if defined(ZEBRA_USER) && defined(ZEBRA_GROUP) - .user = ZEBRA_USER, - .group = ZEBRA_GROUP, +#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP) + .user = QUAGGA_USER, + .group = QUAGGA_GROUP, #endif #if defined(VTY_GROUP) .vty_group = VTY_GROUP, |