summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-02-18 02:43:06 +0000
committermillert <millert@openbsd.org>2003-02-18 02:43:06 +0000
commitd1f70b548a13f83dbc0f7709655192d9e6b305fc (patch)
treefa4f7df44a87709aa3b708ab8ca81ad1acc697bf
parentReal polled mode console support, enough to play hangman in ddb. (diff)
downloadwireguard-openbsd-d1f70b548a13f83dbc0f7709655192d9e6b305fc.tar.xz
wireguard-openbsd-d1f70b548a13f83dbc0f7709655192d9e6b305fc.zip
correct a typo from earlier today
-rw-r--r--usr.sbin/cron/cron.c6
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);