diff options
author | Ted Lemon <source@isc.org> | 1999-05-07 17:32:38 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1999-05-07 17:32:38 +0000 |
commit | 31020a36fd2243133167504b4350f93ae71569f5 (patch) | |
tree | 6fe3b0d37259daee6b184739e74d0abb5c0a02c2 /relay | |
parent | 10da3e76fb30f6db4eb622de4611d913ddb5236d (diff) | |
download | isc-dhcp-31020a36fd2243133167504b4350f93ae71569f5.tar.gz |
Update version info.
Diffstat (limited to 'relay')
-rw-r--r-- | relay/dhcrelay.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c index b884ddcc..bd8a741d 100644 --- a/relay/dhcrelay.c +++ b/relay/dhcrelay.c @@ -22,10 +22,11 @@ #ifndef lint static char ocopyright[] = -"$Id: dhcrelay.c,v 1.32 1999/05/06 20:44:58 mellon Exp $ Copyright (c) 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcrelay.c,v 1.33 1999/05/07 17:32:38 mellon Exp $ Copyright (c) 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" +#include "version.h" static void usage PROTO ((void)); @@ -91,7 +92,7 @@ struct server_list { static char copyright [] = "Copyright 1997, 1998, 1999 The Internet Software Consortium."; static char arr [] = "All rights reserved."; -static char message [] = "Internet Software Consortium DHCP Relay Agent V3.0-alpha 19990506"; +static char message [] = "Internet Software Consortium DHCP Relay Agent"; static char contrib [] = "\nPlease contribute if you find this software useful."; static char url [] = "For info, please visit http://www.isc.org/dhcp-contrib.html\n"; @@ -193,7 +194,7 @@ int main (argc, argv, envp) } if (!quiet) { - log_info (message); + log_info ("%s %s", message, DHCP_VERSION); log_info (copyright); log_info (arr); log_info (contrib); |