diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/cron/env.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/env.c b/usr.sbin/cron/env.c index 50dcb9ba962..3d92bf37d72 100644 --- a/usr.sbin/cron/env.c +++ b/usr.sbin/cron/env.c @@ -1,4 +1,4 @@ -/* $OpenBSD: env.c,v 1.20 2007/09/10 14:29:53 tobias Exp $ */ +/* $OpenBSD: env.c,v 1.21 2008/02/29 23:33:29 deraadt Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved @@ -22,7 +22,7 @@ */ #if !defined(lint) && !defined(LINT) -static char const rcsid[] = "$OpenBSD: env.c,v 1.20 2007/09/10 14:29:53 tobias Exp $"; +static char const rcsid[] = "$OpenBSD: env.c,v 1.21 2008/02/29 23:33:29 deraadt Exp $"; #endif #include "cron.h" @@ -123,7 +123,7 @@ enum env_state { VALUEI, /* First char of VALUE, may be quote */ VALUE, /* Subsequent chars of VALUE */ FINI, /* All done, skipping trailing whitespace */ - ERROR, /* Error */ + ERROR /* Error */ }; /* return ERR = end of file |