diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
| commit | 76b5366091f76c9bc73570149ef5055648fc2c39 (patch) | |
| tree | 590d020e0f2a5bea6e09d66d951a674443b21d67 /usr.bin/at | |
| parent | 4b4d01da6f07f7754ff6a6e4f5223e9f0984d1a6 (diff) | |
Notes
Diffstat (limited to 'usr.bin/at')
| -rw-r--r-- | usr.bin/at/Makefile | 3 | ||||
| -rw-r--r-- | usr.bin/at/at.c | 2 | ||||
| -rw-r--r-- | usr.bin/at/panic.c | 3 | ||||
| -rw-r--r-- | usr.bin/at/parsetime.c | 5 | ||||
| -rw-r--r-- | usr.bin/at/perm.c | 2 |
5 files changed, 6 insertions, 9 deletions
diff --git a/usr.bin/at/Makefile b/usr.bin/at/Makefile index 393af8387875..55d78b9fbd12 100644 --- a/usr.bin/at/Makefile +++ b/usr.bin/at/Makefile @@ -1,9 +1,8 @@ -# $Id: Makefile,v 1.8 1998/09/19 22:42:03 obrien Exp $ +# $Id: Makefile,v 1.7 1998/06/09 04:07:08 imp Exp $ .include "${.CURDIR}/Makefile.inc" PROG= at -CFLAGS+=-Wall SRCS= at.c panic.c parsetime.c perm.c LINKS= ${BINDIR}/at ${BINDIR}/atq \ ${BINDIR}/at ${BINDIR}/atrm \ diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index 3264d5502a2d..daded161ad84 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -92,7 +92,7 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ /* File scope variables */ -static const char rcsid[] = "$Id: at.c,v 1.14 1998/10/15 13:30:48 mckay Exp $"; +static char rcsid[] = "$Id: at.c,v 1.13 1997/03/29 04:27:56 imp Exp $"; char *no_export[] = { "TERM", "TERMCAP", "DISPLAY", "_" diff --git a/usr.bin/at/panic.c b/usr.bin/at/panic.c index c111dd823384..7ef0e15d13b1 100644 --- a/usr.bin/at/panic.c +++ b/usr.bin/at/panic.c @@ -37,8 +37,7 @@ /* File scope variables */ -static const char rcsid[] = - "$Id: panic.c,v 1.7 1997/06/23 06:44:18 charnier Exp $"; +static char rcsid[] = "$Id: panic.c,v 1.6 1997/02/22 19:54:06 peter Exp $"; /* External variables */ diff --git a/usr.bin/at/parsetime.c b/usr.bin/at/parsetime.c index 8cde1dceeb01..8ba6a149d822 100644 --- a/usr.bin/at/parsetime.c +++ b/usr.bin/at/parsetime.c @@ -143,8 +143,7 @@ static size_t sc_len; /* scanner - lenght of token buffer */ static int sc_tokid; /* scanner - token id */ static int sc_tokplur; /* scanner - is token plural? */ -static const char rcsid[] = - "$Id: parsetime.c,v 1.15 1998/08/30 17:33:05 steve Exp $"; +static char rcsid[] = "$Id: parsetime.c,v 1.14 1998/08/08 14:02:06 alex Exp $"; /* Local functions */ @@ -465,7 +464,7 @@ static void month(struct tm *tm) { long year= (-1); - long mday = 0, wday, mon; + long mday, wday, mon; int tlen; switch (sc_tokid) { diff --git a/usr.bin/at/perm.c b/usr.bin/at/perm.c index f1d435246a7d..d52fd3db1990 100644 --- a/usr.bin/at/perm.c +++ b/usr.bin/at/perm.c @@ -48,7 +48,7 @@ /* File scope variables */ -static const char rcsid[] = "$Id: perm.c,v 1.5 1997/02/22 19:54:08 peter Exp $"; +static char rcsid[] = "$Id$"; /* Function declarations */ |
