summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/main.c2
-rw-r--r--tests/test-privs.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/main.c b/tests/main.c
index 885b8a292..b3e6e706f 100644
--- a/tests/main.c
+++ b/tests/main.c
@@ -92,7 +92,7 @@ Daemon which does 'slow' things.\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);
}
diff --git a/tests/test-privs.c b/tests/test-privs.c
index e0118a881..c6ccc28e7 100644
--- a/tests/test-privs.c
+++ b/tests/test-privs.c
@@ -37,9 +37,9 @@ zebra_capabilities_t _caps_p [] =
struct zebra_privs_t test_privs =
{
-#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
- .user = QUAGGA_USER,
- .group = QUAGGA_GROUP,
+#if defined(FRR_USER) && defined(FRR_GROUP)
+ .user = FRR_USER,
+ .group = FRR_GROUP,
#endif
#if defined(VTY_GROUP)
.vty_group = VTY_GROUP,
@@ -71,7 +71,7 @@ Daemon which does 'slow' things.\n\n\
-g, --group Group to run as\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);
}