summaryrefslogtreecommitdiff
path: root/usr.sbin/cron
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/cron')
-rw-r--r--usr.sbin/cron/atrun.c6
-rw-r--r--usr.sbin/cron/cron.c6
-rw-r--r--usr.sbin/cron/database.c6
-rw-r--r--usr.sbin/cron/do_command.c6
-rw-r--r--usr.sbin/cron/entry.c6
-rw-r--r--usr.sbin/cron/env.c6
-rw-r--r--usr.sbin/cron/job.c6
-rw-r--r--usr.sbin/cron/misc.c6
-rw-r--r--usr.sbin/cron/popen.c10
-rw-r--r--usr.sbin/cron/user.c6
10 files changed, 10 insertions, 54 deletions
diff --git a/usr.sbin/cron/atrun.c b/usr.sbin/cron/atrun.c
index a9b28ee335c..bace65599f2 100644
--- a/usr.sbin/cron/atrun.c
+++ b/usr.sbin/cron/atrun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atrun.c,v 1.15 2006/08/13 20:44:00 millert Exp $ */
+/* $OpenBSD: atrun.c,v 1.16 2009/10/27 23:59:51 deraadt Exp $ */
/*
* Copyright (c) 2002-2003 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -20,10 +20,6 @@
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
*/
-#if !defined(lint) && !defined(LINT)
-static const char rcsid[] = "$OpenBSD: atrun.c,v 1.15 2006/08/13 20:44:00 millert Exp $";
-#endif
-
#include "cron.h"
#include <limits.h>
#include <sys/resource.h>
diff --git a/usr.sbin/cron/cron.c b/usr.sbin/cron/cron.c
index 208c4865c25..7a4442adf9b 100644
--- a/usr.sbin/cron/cron.c
+++ b/usr.sbin/cron/cron.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cron.c,v 1.40 2009/01/29 22:50:16 sobrado Exp $ */
+/* $OpenBSD: cron.c,v 1.41 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static const char rcsid[] = "$OpenBSD: cron.c,v 1.40 2009/01/29 22:50:16 sobrado Exp $";
-#endif
-
#define MAIN_PROGRAM
#include "cron.h"
diff --git a/usr.sbin/cron/database.c b/usr.sbin/cron/database.c
index 3a571adc0ec..eb18c75090f 100644
--- a/usr.sbin/cron/database.c
+++ b/usr.sbin/cron/database.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: database.c,v 1.17 2007/03/28 16:49:25 millert Exp $ */
+/* $OpenBSD: database.c,v 1.18 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: database.c,v 1.17 2007/03/28 16:49:25 millert Exp $";
-#endif
-
/* vix 26jan87 [RCS has the log]
*/
diff --git a/usr.sbin/cron/do_command.c b/usr.sbin/cron/do_command.c
index d5892b9cd90..693e166cb87 100644
--- a/usr.sbin/cron/do_command.c
+++ b/usr.sbin/cron/do_command.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: do_command.c,v 1.32 2007/05/25 17:50:41 millert Exp $ */
+/* $OpenBSD: do_command.c,v 1.33 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: do_command.c,v 1.32 2007/05/25 17:50:41 millert Exp $";
-#endif
-
#include "cron.h"
static void child_process(entry *, user *);
diff --git a/usr.sbin/cron/entry.c b/usr.sbin/cron/entry.c
index 0d5b3357305..2574577b9d8 100644
--- a/usr.sbin/cron/entry.c
+++ b/usr.sbin/cron/entry.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: entry.c,v 1.30 2005/01/30 20:44:50 millert Exp $ */
+/* $OpenBSD: entry.c,v 1.31 2009/10/27 23:59:51 deraadt Exp $ */
/*
* Copyright 1988,1990,1993,1994 by Paul Vixie
@@ -22,10 +22,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: entry.c,v 1.30 2005/01/30 20:44:50 millert Exp $";
-#endif
-
/* vix 26jan87 [RCS'd; rest of log is in RCS file]
* vix 01jan87 [added line-level error recovery]
* vix 31dec86 [added /step to the from-to range, per bob@acornrc]
diff --git a/usr.sbin/cron/env.c b/usr.sbin/cron/env.c
index 3d92bf37d72..2b71b3e9578 100644
--- a/usr.sbin/cron/env.c
+++ b/usr.sbin/cron/env.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: env.c,v 1.21 2008/02/29 23:33:29 deraadt Exp $ */
+/* $OpenBSD: env.c,v 1.22 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: env.c,v 1.21 2008/02/29 23:33:29 deraadt Exp $";
-#endif
-
#include "cron.h"
char **
diff --git a/usr.sbin/cron/job.c b/usr.sbin/cron/job.c
index 43915ce147f..2bc2c049122 100644
--- a/usr.sbin/cron/job.c
+++ b/usr.sbin/cron/job.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: job.c,v 1.7 2004/06/17 22:11:55 millert Exp $ */
+/* $OpenBSD: job.c,v 1.8 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: job.c,v 1.7 2004/06/17 22:11:55 millert Exp $";
-#endif
-
#include "cron.h"
typedef struct _job {
diff --git a/usr.sbin/cron/misc.c b/usr.sbin/cron/misc.c
index d97345a06a5..6d978d7de3f 100644
--- a/usr.sbin/cron/misc.c
+++ b/usr.sbin/cron/misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.39 2008/01/05 16:59:06 chl Exp $ */
+/* $OpenBSD: misc.c,v 1.40 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: misc.c,v 1.39 2008/01/05 16:59:06 chl Exp $";
-#endif
-
/* vix 26jan87 [RCS has the rest of the log]
* vix 30dec86 [written]
*/
diff --git a/usr.sbin/cron/popen.c b/usr.sbin/cron/popen.c
index f02c2bb36ba..5cef5ddd791 100644
--- a/usr.sbin/cron/popen.c
+++ b/usr.sbin/cron/popen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: popen.c,v 1.20 2006/04/03 01:31:11 djm Exp $ */
+/* $OpenBSD: popen.c,v 1.21 2009/10/27 23:59:51 deraadt Exp $ */
/*
* Copyright (c) 1988, 1993, 1994
@@ -37,14 +37,6 @@
* globbing stuff since we don't need it. also execvp instead of execv.
*/
-#ifndef lint
-#if 0
-static const sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94";
-#else
-static const char rcsid[] = "$OpenBSD: popen.c,v 1.20 2006/04/03 01:31:11 djm Exp $";
-#endif
-#endif /* not lint */
-
#include "cron.h"
#define MAX_ARGV 100
diff --git a/usr.sbin/cron/user.c b/usr.sbin/cron/user.c
index facc0b18c33..29643f424bb 100644
--- a/usr.sbin/cron/user.c
+++ b/usr.sbin/cron/user.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: user.c,v 1.7 2004/06/17 22:11:55 millert Exp $ */
+/* $OpenBSD: user.c,v 1.8 2009/10/27 23:59:51 deraadt Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -21,10 +21,6 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#if !defined(lint) && !defined(LINT)
-static const char rcsid[] = "$OpenBSD: user.c,v 1.7 2004/06/17 22:11:55 millert Exp $";
-#endif
-
/* vix 26jan87 [log is in RCS file]
*/