diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-11-29 20:43:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-11-29 20:43:32 +0000 |
commit | 7ef703cfb022cb9b91820677c90bde9b54300006 (patch) | |
tree | 61607607f870ad0bc23180460f4fc670e0a1e078 /usr.sbin/cron/crontab.c | |
parent | bcb575cbe4ae64e4fabab31c687f093eb6f46901 (diff) |
crontab.c uses the rcsid in the crontab head comment so don't protect
it from lint. Found by cloder@
Diffstat (limited to 'usr.sbin/cron/crontab.c')
-rw-r--r-- | usr.sbin/cron/crontab.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/cron/crontab.c b/usr.sbin/cron/crontab.c index aa1a78c91b6..40638fc7292 100644 --- a/usr.sbin/cron/crontab.c +++ b/usr.sbin/cron/crontab.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crontab.c,v 1.48 2005/01/30 21:00:31 millert Exp $ */ +/* $OpenBSD: crontab.c,v 1.49 2005/11/29 20:43:31 millert Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved @@ -21,9 +21,7 @@ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#if !defined(lint) && !defined(LINT) -static char const rcsid[] = "$OpenBSD: crontab.c,v 1.48 2005/01/30 21:00:31 millert Exp $"; -#endif +static char const rcsid[] = "$OpenBSD: crontab.c,v 1.49 2005/11/29 20:43:31 millert Exp $"; /* crontab - install and manage per-user crontab files * vix 02may87 [RCS has the rest of the log] |