summaryrefslogtreecommitdiff
path: root/ripngd/ripng_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'ripngd/ripng_main.c')
-rw-r--r--ripngd/ripng_main.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c
index 6c335252..9b762674 100644
--- a/ripngd/ripng_main.c
+++ b/ripngd/ripng_main.c
@@ -66,11 +66,14 @@ zebra_capabilities_t _caps_p [] =
struct zebra_privs_t ripngd_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,