From: Paul Mackerras Date: Mon, 8 Mar 1999 01:47:24 +0000 (+0000) Subject: Change from printing `ppp 2.3 patch level 6' to `ppp 2.3.6' X-Git-Tag: RELEASE_2_3_6~8 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=19c50963be5aee5883814a042a60973617dc2768 Change from printing `ppp 2.3 patch level 6' to `ppp 2.3.6' --- diff --git a/pppd/options.c b/pppd/options.c index 328b142..cc70023 100644 --- a/pppd/options.c +++ b/pppd/options.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: options.c,v 1.48 1999/03/06 11:28:10 paulus Exp $"; +static char rcsid[] = "$Id: options.c,v 1.49 1999/03/08 01:47:24 paulus Exp $"; #endif #include @@ -222,7 +222,7 @@ option_t general_options[] = { #endif static char *usage_string = "\ -pppd version %s patch level %d%s\n\ +pppd version %s.%d%s\n\ Usage: %s [ options ], where options are:\n\ Communicate over the named device\n\ Set the baud rate to \n\ @@ -656,7 +656,7 @@ showversion(argv) char **argv; { if (phase == PHASE_INITIALIZE) { - fprintf(stderr, "pppd version %s patch level %d%s\n", + fprintf(stderr, "pppd version %s.%d%s\n", VERSION, PATCHLEVEL, IMPLEMENTATION); exit(0); }