summaryrefslogtreecommitdiffstats
path: root/ripd/rip_main.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2016-12-14 19:30:44 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2016-12-20 17:57:47 +0100
commitb2f361571b2ada8e820ad8ab87c023479e3af90a (patch)
treef96a05e79aafa9484f7c241f42e64d1341c87379 /ripd/rip_main.c
parentdoc: use config values from configure in manpages (diff)
downloadfrr-b2f361571b2ada8e820ad8ab87c023479e3af90a.tar.xz
frr-b2f361571b2ada8e820ad8ab87c023479e3af90a.zip
build: rename (1 of ?): configure.ac + preproc
This replaces Quagga -> FRR in most configure.ac settings as well as a handful of preprocessor macros in the source code. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ripd/rip_main.c')
-rw-r--r--ripd/rip_main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c
index 796647c3e..cfcb60168 100644
--- a/ripd/rip_main.c
+++ b/ripd/rip_main.c
@@ -65,11 +65,11 @@ zebra_capabilities_t _caps_p [] =
struct zebra_privs_t ripd_privs =
{
-#if defined(QUAGGA_USER)
- .user = QUAGGA_USER,
+#if defined(FRR_USER)
+ .user = FRR_USER,
#endif
-#if defined QUAGGA_GROUP
- .group = QUAGGA_GROUP,
+#if defined FRR_GROUP
+ .group = FRR_GROUP,
#endif
#ifdef VTY_GROUP
.vty_group = VTY_GROUP,
@@ -123,7 +123,7 @@ Daemon which manages RIP version 1 and 2.\n\n\
-v, --version Print program version\n\
-h, --help Display this help and exit\n\
\n\
-Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
+Report bugs to %s\n", progname, FRR_BUG_ADDRESS);
}
exit (status);
@@ -314,7 +314,7 @@ main (int argc, char **argv)
vty_serv_sock (vty_addr, vty_port, RIP_VTYSH_PATH);
/* Print banner. */
- zlog_notice ("RIPd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
+ zlog_notice ("RIPd %s starting: vty@%d", FRR_VERSION, vty_port);
/* Execute each thread. */
while (thread_fetch (master, &thread))