summaryrefslogtreecommitdiff
path: root/ripd
diff options
context:
space:
mode:
authorpaul <paul>2003-08-14 05:32:12 +0000
committerpaul <paul>2003-08-14 05:32:12 +0000
commitd81fadfd889aa7bc657fa19752344a585e8c274a (patch)
tree26a7026afc547f4ac82ea4d84394109323cbb246 /ripd
parente835d10483f833c8e6bb2957ea10a2f7a9cb4888 (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 'ripd')
-rw-r--r--ripd/rip_main.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c
index d5713208..a87e3b7e 100644
--- a/ripd/rip_main.c
+++ b/ripd/rip_main.c
@@ -58,11 +58,14 @@ zebra_capabilities_t _caps_p [] =
struct zebra_privs_t ripd_privs =
{
-#if defined(ZEBRA_USER)
- .user = ZEBRA_USER,
+#if defined(QUAGGA_USER)
+ .user = QUAGGA_USER,
#endif
-#if defined ZEBRA_GROUP
- .group = ZEBRA_GROUP,
+#if defined QUAGGA_GROUP
+ .group = QUAGGA_GROUP,
+#endif
+#ifdef VTY_GROUP
+ .vty_group = VTY_GROUP,
#endif
.caps_p = _caps_p,
.cap_num_p = 2,