Source-Changes-HG archive

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

[src/trunk]: src/dist/dhcp/dst If rcsid away since gcc3 doesn't like unrefere...



details:   https://anonhg.NetBSD.org/src/rev/c64cc6079131
branches:  trunk
changeset: 532787:c64cc6079131
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Jun 15 01:32:13 2002 +0000

description:
If rcsid away since gcc3 doesn't like unreferenced static vars.  Also we
do that for other stuff like tcpdump.

diffstat:

 dist/dhcp/dst/base64.c      |  4 +++-
 dist/dhcp/dst/dst_api.c     |  4 +++-
 dist/dhcp/dst/dst_support.c |  4 +++-
 dist/dhcp/dst/hmac_link.c   |  6 ++++--
 dist/dhcp/dst/prandom.c     |  4 +++-
 5 files changed, 16 insertions(+), 6 deletions(-)

diffs (63 lines):

diff -r 3f8326b99b41 -r c64cc6079131 dist/dhcp/dst/base64.c
--- a/dist/dhcp/dst/base64.c    Sat Jun 15 01:28:39 2002 +0000
+++ b/dist/dhcp/dst/base64.c    Sat Jun 15 01:32:13 2002 +0000
@@ -41,7 +41,9 @@
  */
 
 #if !defined(LINT) && !defined(CODECENTER)
-static const char rcsid[] = "$Id: base64.c,v 1.1.1.1 2001/08/03 11:35:34 drochner Exp $";
+#if 0
+static const char rcsid[] = "$Id: base64.c,v 1.2 2002/06/15 01:32:13 matt Exp $";
+#endif
 #endif /* not lint */
 
 #include <sys/types.h>
diff -r 3f8326b99b41 -r c64cc6079131 dist/dhcp/dst/dst_api.c
--- a/dist/dhcp/dst/dst_api.c   Sat Jun 15 01:28:39 2002 +0000
+++ b/dist/dhcp/dst/dst_api.c   Sat Jun 15 01:32:13 2002 +0000
@@ -1,5 +1,7 @@
 #ifndef LINT
-static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/dst_api.c,v 1.1.1.1 2001/08/03 11:35:34 drochner Exp $";
+#if 0
+static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/dst_api.c,v 1.2 2002/06/15 01:32:13 matt Exp $";
+#endif
 #endif
 
 /*
diff -r 3f8326b99b41 -r c64cc6079131 dist/dhcp/dst/dst_support.c
--- a/dist/dhcp/dst/dst_support.c       Sat Jun 15 01:28:39 2002 +0000
+++ b/dist/dhcp/dst/dst_support.c       Sat Jun 15 01:32:13 2002 +0000
@@ -1,4 +1,6 @@
-static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/dst_support.c,v 1.1.1.1 2001/08/03 11:35:34 drochner Exp $";
+#if 0
+static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/dst_support.c,v 1.2 2002/06/15 01:32:13 matt Exp $";
+#endif
 
 
 /*
diff -r 3f8326b99b41 -r c64cc6079131 dist/dhcp/dst/hmac_link.c
--- a/dist/dhcp/dst/hmac_link.c Sat Jun 15 01:28:39 2002 +0000
+++ b/dist/dhcp/dst/hmac_link.c Sat Jun 15 01:32:13 2002 +0000
@@ -1,6 +1,8 @@
 #ifdef HMAC_MD5
-#ifndef LINT
-static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/hmac_link.c,v 1.1.1.1 2001/08/03 11:35:34 drochner Exp $";
+#if !defined(LINT)
+#if 0
+static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/hmac_link.c,v 1.2 2002/06/15 01:32:13 matt Exp $";
+#endif
 #endif
 /*
  * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc.
diff -r 3f8326b99b41 -r c64cc6079131 dist/dhcp/dst/prandom.c
--- a/dist/dhcp/dst/prandom.c   Sat Jun 15 01:28:39 2002 +0000
+++ b/dist/dhcp/dst/prandom.c   Sat Jun 15 01:32:13 2002 +0000
@@ -1,5 +1,7 @@
 #ifndef LINT
-static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/prandom.c,v 1.2 2002/06/10 00:30:35 itojun Exp $";
+#if 0
+static const char rcsid[] = "$Header: /cvsroot/src/dist/dhcp/dst/Attic/prandom.c,v 1.3 2002/06/15 01:32:13 matt Exp $";
+#endif
 #endif
 /*
  * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc.



Home | Main Index | Thread Index | Old Index