diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-02-18 02:43:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-02-18 02:43:07 +0000 |
commit | 3513a1bbc55ef2f98799c047b851fd7ab705dd7b (patch) | |
tree | 38f26a0be6078a7b1e3a20c8bab227c0d0c77561 | |
parent | 1c68f745252c3e72d00f25fcef7af4e54b585772 (diff) |
correct a typo from earlier today
-rw-r--r-- | usr.sbin/cron/cron.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/cron.c b/usr.sbin/cron/cron.c index 69a096684cd..56ecef1c5a1 100644 --- a/usr.sbin/cron/cron.c +++ b/usr.sbin/cron/cron.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cron.c,v 1.29 2003/02/17 18:40:11 millert Exp $ */ +/* $OpenBSD: cron.c,v 1.30 2003/02/18 02:43:06 millert Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved */ @@ -21,7 +21,7 @@ */ #if !defined(lint) && !defined(LINT) -static const char rcsid[] = "$OpenBSD: cron.c,v 1.29 2003/02/17 18:40:11 millert Exp $"; +static const char rcsid[] = "$OpenBSD: cron.c,v 1.30 2003/02/18 02:43:06 millert Exp $"; #endif #define MAIN_PROGRAM @@ -118,7 +118,7 @@ main(int argc, char *argv[]) { break; case 0: /* child process */ - log_it("CRON",getpid(),"STARTUP","CRON_VERSION"); + log_it("CRON",getpid(),"STARTUP",CRON_VERSION); (void) setsid(); if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) >= 0) { (void) dup2(fd, STDIN); |