summaryrefslogtreecommitdiffstats
path: root/zebra/main.c
diff options
context:
space:
mode:
authorpaul <paul>2003-08-14 05:32:12 +0000
committerpaul <paul>2003-08-14 05:32:12 +0000
commit97f8c302409e8a0ffebfeb941b7f49428c6c433c (patch)
treef6eddac5eb903a3b2caa84ea341f59756b49f0ef /zebra/main.c
parent196f323facd21e9b7d0bd320f0da7c5159c09ea6 (diff)
downloadquagga-97f8c302409e8a0ffebfeb941b7f49428c6c433c.tar.bz2
quagga-97f8c302409e8a0ffebfeb941b7f49428c6c433c.tar.xz
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 'zebra/main.c')
-rw-r--r--zebra/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/main.c b/zebra/main.c
index c9a19eda..98227ea5 100644
--- a/zebra/main.c
+++ b/zebra/main.c
@@ -80,9 +80,9 @@ zebra_capabilities_t _caps_p [] =
/* zebra privileges to run with */
struct zebra_privs_t zserv_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
#ifdef VTY_GROUP
.vty_group = VTY_GROUP,