$FreeBSD$ -> __DATE__

This is probably more appropriate that $Date$ anyway
This commit is contained in:
Brian Somers 1999-09-06 18:11:50 +00:00
parent 0c2b3c31aa
commit f914f3c09c
2 changed files with 1 additions and 3 deletions

View File

@ -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;
}

View File

@ -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);