diff options
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_main.c | 6 | ||||
-rw-r--r-- | ospf6d/ospf6d.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index 1279b5ba..6356879a 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -130,7 +130,7 @@ void _reload () { zlog_notice ("OSPF6d (Zebra-%s ospf6d-%s) reloaded", - ZEBRA_VERSION, OSPF6_DAEMON_VERSION); + QUAGGA_VERSION, OSPF6_DAEMON_VERSION); ospf6_zebra_finish (); vty_finish (); execve (_progpath, _argv, _envp); @@ -142,7 +142,7 @@ terminate (int i) ospf6_delete (ospf6); unlink (PATH_OSPF6D_PID); zlog_notice ("OSPF6d (Zebra-%s ospf6d-%s) terminated", - ZEBRA_VERSION, OSPF6_DAEMON_VERSION); + QUAGGA_VERSION, OSPF6_DAEMON_VERSION); exit (i); } @@ -345,7 +345,7 @@ main (int argc, char *argv[], char *envp[]) #ifdef DEBUG /* Print start message */ zlog_notice ("OSPF6d (Zebra-%s ospf6d-%s) starts", - ZEBRA_VERSION, OSPF6_DAEMON_VERSION); + QUAGGA_VERSION, OSPF6_DAEMON_VERSION); #endif /* Start finite state machine, here we go! */ diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index 04609ba8..e83e1eab 100644 --- a/ospf6d/ospf6d.c +++ b/ospf6d/ospf6d.c @@ -637,7 +637,7 @@ DEFUN (set_proctitle, if (strncmp (argv[0], "v", 1) == 0) { proctitle_mode = 1; - setproctitle ("%s Zebra: %s", OSPF6_DAEMON_VERSION, ZEBRA_VERSION); + setproctitle ("%s Zebra: %s", OSPF6_DAEMON_VERSION, QUAGGA_VERSION); } else if (strncmp (argv[0], "nor", 3) == 0) { |