diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-02-29 23:33:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-02-29 23:33:30 +0000 |
commit | 80a24dedb9624469c209ad02081db739519645a4 (patch) | |
tree | b50b3a7600b0fa2e4e48d1f81a08da3e26ea5ae2 /usr.sbin | |
parent | 48a08d65744d3969e41e3c83231c81e8b663e9cd (diff) |
no , at end of enum; tobiasu@tmux.org
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 |