Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/cron Don't rely on an `rcsid' being present.



details:   https://anonhg.NetBSD.org/src/rev/248ea94bba7b
branches:  trunk
changeset: 467379:248ea94bba7b
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Mar 23 22:53:30 1999 +0000

description:
Don't rely on an `rcsid' being present.

diffstat:

 usr.sbin/cron/crontab.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 617676409f03 -r 248ea94bba7b usr.sbin/cron/crontab.c
--- a/usr.sbin/cron/crontab.c   Tue Mar 23 22:53:02 1999 +0000
+++ b/usr.sbin/cron/crontab.c   Tue Mar 23 22:53:30 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: crontab.c,v 1.11 1998/07/28 19:27:39 mycroft Exp $     */
+/*     $NetBSD: crontab.c,v 1.12 1999/03/23 22:53:30 thorpej Exp $     */
 
 /* Copyright 1988,1990,1993,1994 by Paul Vixie
  * All rights reserved
@@ -22,7 +22,7 @@
 #if 0
 static char rcsid[] = "Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp";
 #else
-__RCSID("$NetBSD: crontab.c,v 1.11 1998/07/28 19:27:39 mycroft Exp $");
+__RCSID("$NetBSD: crontab.c,v 1.12 1999/03/23 22:53:30 thorpej Exp $");
 #endif
 #endif
 
@@ -529,7 +529,8 @@
         */
        fprintf(tmp, "# DO NOT EDIT THIS FILE - edit the master and reinstall.\n");
        fprintf(tmp, "# (%s installed on %-24.24s)\n", Filename, ctime(&now));
-       fprintf(tmp, "# (Cron version -- %s)\n", rcsid);
+       fprintf(tmp, "# (Cron version -- %s)\n",
+           "$NetBSD: crontab.c,v 1.12 1999/03/23 22:53:30 thorpej Exp $");
 
        /* copy the crontab to the tmp
         */



Home | Main Index | Thread Index | Old Index