diff options
author | charnier <charnier@FreeBSD.org> | 1997-11-03 07:51:05 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-11-03 07:51:05 +0000 |
commit | 16031202f57d61b7cfda43c250289d480f0bbdef (patch) | |
tree | b23890e5d8158c181b6b8c56cbb8b2be770c847d /usr.bin/vacation | |
parent | 7114798a5dd12e97b9e3d84ebf52f9805c00aff9 (diff) | |
download | FreeBSD-src-16031202f57d61b7cfda43c250289d480f0bbdef.zip FreeBSD-src-16031202f57d61b7cfda43c250289d480f0bbdef.tar.gz |
Add const to copyright string. Hide sccsid string.
Diffstat (limited to 'usr.bin/vacation')
-rw-r--r-- | usr.bin/vacation/vacation.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/vacation/vacation.c b/usr.bin/vacation/vacation.c index d3ff609..6ea8c28 100644 --- a/usr.bin/vacation/vacation.c +++ b/usr.bin/vacation/vacation.c @@ -32,15 +32,17 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1983, 1987, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "From: @(#)vacation.c 8.2 (Berkeley) 1/26/94"; -static char rcsid[] = - "$Id: vacation.c,v 1.10 1997/08/28 04:40:51 imp Exp $"; +#if 0 +static char sccsid[] = "@(#)from: vacation.c 8.2 (Berkeley) 1/26/94"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ /* |