Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/mtree Don't use __RCSID unless it's defined.



details:   https://anonhg.NetBSD.org/src/rev/f6daecfd7444
branches:  trunk
changeset: 525304:f6daecfd7444
user:      bjh21 <bjh21%NetBSD.org@localhost>
date:      Tue Apr 09 19:17:11 2002 +0000

description:
Don't use __RCSID unless it's defined.

diffstat:

 usr.sbin/mtree/excludes.c |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 7cec77d36965 -r f6daecfd7444 usr.sbin/mtree/excludes.c
--- a/usr.sbin/mtree/excludes.c Tue Apr 09 18:07:24 2002 +0000
+++ b/usr.sbin/mtree/excludes.c Tue Apr 09 19:17:11 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: excludes.c,v 1.9 2002/04/09 02:35:31 thorpej Exp $     */
+/*     $NetBSD: excludes.c,v 1.10 2002/04/09 19:17:11 bjh21 Exp $      */
 
 /*
  * Copyright 2000 Massachusetts Institute of Technology
@@ -30,7 +30,10 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: excludes.c,v 1.9 2002/04/09 02:35:31 thorpej Exp $");
+
+#if defined(__RCSID) && !defined(lint)
+__RCSID("$NetBSD: excludes.c,v 1.10 2002/04/09 19:17:11 bjh21 Exp $");
+#endif
 
 #include <sys/types.h>
 #include <sys/queue.h>



Home | Main Index | Thread Index | Old Index