From 42053f4e3a0bb8d4e2df7c9d626629cc14dfc285 Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 13 Aug 2003 02:54:44 +0000 Subject: 2003-08-13 Paul Jakma * lib/version.h: Add QUAGGA_PROGNAME * lib/smux.c: hardcoded zebra/quagga -> QUAGGA_PROGNAME * lib/command.c: ditto * vtysh/vtysh_user.c: ditto --- lib/command.c | 2 +- lib/smux.c | 2 +- lib/version.h | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/command.c b/lib/command.c index 71db3aa1..e8c9203f 100644 --- a/lib/command.c +++ b/lib/command.c @@ -39,7 +39,7 @@ struct host host; /* Default motd string. */ char *default_motd = "\r\n\ -Hello, this is quagga (version " QUAGGA_VERSION ").\r\n\ +Hello, this is " QUAGGA_PROGNAME " (version " QUAGGA_VERSION ").\r\n\ Copyright 1996-2002 Kunihiro Ishiguro.\r\n\ \r\n"; diff --git a/lib/smux.c b/lib/smux.c index 2062b877..ddb8bfec 100644 --- a/lib/smux.c +++ b/lib/smux.c @@ -952,7 +952,7 @@ smux_open (int sock) u_char *ptr; int len; u_long version; - u_char progname[] = "quagga-" QUAGGA_VERSION; + u_char progname[] = QUAGGA_PROGNAME "-" QUAGGA_VERSION; if (debug_smux) { diff --git a/lib/version.h b/lib/version.h index 84df21c6..f0387f0b 100644 --- a/lib/version.h +++ b/lib/version.h @@ -22,6 +22,8 @@ #ifndef _ZEBRA_VERSION_H #define _ZEBRA_VERSION_H +#define QUAGGA_PROGNAME "quagga" + #define QUAGGA_VERSION "0.96" #define ZEBRA_BUG_ADDRESS "bug-zebra@gnu.org" -- cgit v1.2.1