From 029c9bc2f500e01e15206aa38ec062dfbdc18f5a Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 6 Sep 1999 18:11:50 +0000 Subject: $FreeBSD$ -> __DATE__ This is probably more appropriate that $Date$ anyway --- usr.sbin/ppp/command.c | 3 +-- usr.sbin/ppp/command.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index f0544ef..461c4295 100644 --- a/usr.sbin/ppp/command.c +++ b/usr.sbin/ppp/command.c @@ -145,7 +145,6 @@ #define NEG_VJCOMP 53 const char Version[] = "2.23"; -const char VersionDate[] = "$FreeBSD$"; static int ShowCommand(struct cmdargs const *); static int TerminalCommand(struct cmdargs const *); @@ -732,7 +731,7 @@ ShowStopped(struct cmdargs const *arg) static int ShowVersion(struct cmdargs const *arg) { - prompt_Printf(arg->prompt, "PPP Version %s - %s\n", Version, VersionDate); + prompt_Printf(arg->prompt, "PPP Version %s - %s\n", Version, __DATE__); return 0; } diff --git a/usr.sbin/ppp/command.h b/usr.sbin/ppp/command.h index a83b440..6b1468d 100644 --- a/usr.sbin/ppp/command.h +++ b/usr.sbin/ppp/command.h @@ -52,7 +52,6 @@ struct cmdtab { #define IsEnabled(x) ((x) & NEG_ENABLED) extern const char Version[]; -extern const char VersionDate[]; extern void command_Expand(char **, int, char const *const *, struct bundle *, int, pid_t); -- cgit v1.1