diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2016-12-14 19:30:44 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2016-12-20 17:57:47 +0100 | 
| commit | b2f361571b2ada8e820ad8ab87c023479e3af90a (patch) | |
| tree | f96a05e79aafa9484f7c241f42e64d1341c87379 /ripngd/ripng_main.c | |
| parent | a07169b1f687e993359a3033dc6bbeea48464ead (diff) | |
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 'ripngd/ripng_main.c')
| -rw-r--r-- | ripngd/ripng_main.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c index e7ecbf9690..14711a1a65 100644 --- a/ripngd/ripng_main.c +++ b/ripngd/ripng_main.c @@ -70,11 +70,11 @@ zebra_capabilities_t _caps_p [] =  struct zebra_privs_t ripngd_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, @@ -125,7 +125,7 @@ Daemon which manages RIPng.\n\n\  -C, --dryrun       Check configuration for validity and exit\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);  } @@ -309,7 +309,7 @@ main (int argc, char **argv)    pid_output (pid_file);    /* Print banner. */ -  zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port); +  zlog_notice ("RIPNGd %s starting: vty@%d", FRR_VERSION, vty_port);    /* Fetch next active thread. */    while (thread_fetch (master, &thread))  | 
