]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Unify rcsid[]'s.
authorfenner <fenner>
Sun, 9 Jan 2000 21:34:14 +0000 (21:34 +0000)
committerfenner <fenner>
Sun, 9 Jan 2000 21:34:14 +0000 (21:34 +0000)
25 files changed:
config.h.in
configure
configure.in
missing/getaddrinfo.c
missing/getnameinfo.c
missing/inet_aton.c
missing/inet_ntop.c
missing/inet_pton.c
missing/snprintf.c
print-ascii.c
print-bgp.c
print-frag6.c
print-icmp6.c
print-ip6.c
print-ip6opts.c
print-ipcomp.c
print-mobile.c
print-ripng.c
print-rt6.c
print-rx.c
print-smb.c
print-telnet.c
print-vjc.c
smbutil.c
strcasecmp.c

index b3981b15be6f96310a5f167f7bc40d27cc41d8b2..ef062d8f68e7c4595a1c689bd71c8793c9f167f9 100644 (file)
 /* Define if you have the <smi.h> header file.  */
 #undef HAVE_SMI_H
 
-/* Define if you have the <sys/cdefs.h> header file.  */
-#undef HAVE_SYS_CDEFS_H
-
 /* Define if you have the <zlib.h> header file.  */
 #undef HAVE_ZLIB_H
 
index a09293a27a09e8e0fcab6914206487d2b7ab4779..c1844f7b6460d8bdc04d0ba456151ea3da068f99 100755 (executable)
--- a/configure
+++ b/configure
@@ -1250,7 +1250,7 @@ else
 fi
 echo "$ac_t""$CPP" 1>&6
 
-for ac_hdr in fcntl.h malloc.h memory.h rpc/rpcent.h sys/cdefs.h
+for ac_hdr in fcntl.h malloc.h memory.h rpc/rpcent.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
index 70cb018e3cabcb788c0f14329c8d3c30a3452fdf..dac2e9f4dde513f7b360de6c2e14bae03972da1f 100644 (file)
@@ -1,4 +1,4 @@
-dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.90 2000-01-08 06:03:17 assar Exp $ (LBL)
+dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.91 2000-01-09 21:34:16 fenner Exp $ (LBL)
 dnl
 dnl Copyright (c) 1994, 1995, 1996, 1997
 dnl    The Regents of the University of California.  All rights reserved.
@@ -6,7 +6,7 @@ dnl
 dnl Process this file with autoconf to produce a configure script.
 dnl
 
-AC_REVISION($Revision: 1.90 $)
+AC_REVISION($Revision: 1.91 $)
 AC_INIT(tcpdump.c)
 
 AC_CANONICAL_SYSTEM
@@ -20,7 +20,7 @@ fi
 AC_LBL_C_INIT(V_CCOPT, V_INCLS)
 AC_C_INLINE
 
-AC_CHECK_HEADERS(fcntl.h malloc.h memory.h rpc/rpcent.h sys/cdefs.h)
+AC_CHECK_HEADERS(fcntl.h malloc.h memory.h rpc/rpcent.h)
 AC_HEADER_TIME
 
 case "$target_os" in
index 4dec9a1b6cb9b756d8bd4ec5ce8d3b523ba149c3..d45b14d7659cf67b658d6a1fd2d82ecbbccae0ad 100644 (file)
 #include "config.h"
 #endif 
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/missing/getaddrinfo.c,v 1.7 2000-01-09 21:35:44 fenner Exp $";
+#endif
+
 #include <sys/types.h>
 #include <sys/param.h>
 #if 0
index a19312f849d8d209ffe159e8cecf20791d22f18d..b7e99c2666ce7314f6dded65b4b9195ed282944c 100644 (file)
 #include "config.h"
 #endif 
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/missing/getnameinfo.c,v 1.4 2000-01-09 21:35:44 fenner Exp $";
+#endif
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <net/if.h>
index 8be3011d629ddfa5e5772df546ab2e2c5fdc0aa6..0dbe9924573b34db09fd31e751d7720f0d304602 100644 (file)
  * SUCH DAMAGE.
  */
 
-/* $Id: inet_aton.c,v 1.1 1999-10-30 07:53:39 itojun Exp $ */
+/* $Id: inet_aton.c,v 1.2 2000-01-09 21:35:45 fenner Exp $ */
+
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/missing/inet_aton.c,v 1.2 2000-01-09 21:35:45 fenner Exp $";
+#endif
 
 #include <sys/types.h>
 #include <netinet/in.h>
index a6801b273b687ea5741662a5ac2dcc33510aeebc..b0f4e4447c6599f7d8c464c1358316c32c53333d 100644 (file)
  * SUCH DAMAGE.
  */
 
-/* $Id: inet_ntop.c,v 1.2 1999-10-30 23:45:52 itojun Exp $ */
+/* $Id: inet_ntop.c,v 1.3 2000-01-09 21:35:45 fenner Exp $ */
+
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/missing/inet_ntop.c,v 1.3 2000-01-09 21:35:45 fenner Exp $";
+#endif
 
 #include <stdio.h>
 #include <errno.h>
index c62bdcd8de4f1e3fa0000beae44080391ef23718..a9b5c05dd58d15369461f473674bbd0f83c9ef98 100644 (file)
  * SUCH DAMAGE.
  */
 
-/* $Id: inet_pton.c,v 1.1 1999-10-30 07:53:39 itojun Exp $ */
+/* $Id: inet_pton.c,v 1.2 2000-01-09 21:35:46 fenner Exp $ */
+
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/missing/inet_pton.c,v 1.2 2000-01-09 21:35:46 fenner Exp $";
+#endif
 
 #include <errno.h>
 #include <sys/types.h>
index 1df2bc54e8cf71b1d0f89f2f7cbdb16b55bbcedf..49c70e61093d8fd9c4742979895e6a59c07b7b8f 100644 (file)
  * SUCH DAMAGE.
  */
 
+/* $Id: snprintf.c,v 1.2 2000-01-09 21:35:46 fenner Exp $ */
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
-/* $Id: snprintf.c,v 1.1 2000-01-07 16:01:38 assar Exp $ */
 #endif
+
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/missing/snprintf.c,v 1.2 2000-01-09 21:35:46 fenner Exp $";
+#endif
+
 #include <stdio.h>
 #include <stdarg.h>
 #include <stdlib.h>
index b2a78a031f65042349c2e8fa246a283105b35896..882f24742dacce431fdddd2e843af743852e703e 100644 (file)
 #include "config.h"
 #endif
 
-#ifdef HAVE_SYS_CDEFS_H
-#include <sys/cdefs.h>
-#endif
-#if 0
 #ifndef lint
-__RCSID("$NetBSD: print-ascii.c,v 1.1 1999/09/30 14:49:12 sjg Exp $");
-#endif
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-ascii.c,v 1.4 2000-01-09 21:34:16 fenner Exp $";
 #endif
 #include <stdio.h>
 #include <sys/types.h>
index 37ea9cb01b898d7254011823b91ef86c04d54969..bc4cc4ad3f145e7c315b8c7d374185dcbd747526 100644 (file)
 #include "config.h"
 #endif
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-bgp.c,v 1.10 2000-01-09 21:34:17 fenner Exp $";
+#endif
+
 #include <sys/param.h>
 #include <sys/time.h>
 #include <sys/types.h>
index a8bc0b20e162eec52b09fa6f78016fe3de3800a8..d31de2773d9367b8de1b78bacd4a32ee60fb9104 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-frag6.c,v 1.4 2000-01-09 21:34:17 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index 6f0015cbe2da16d50e0bde76d6f7c631c130d08b..fad587762a01d5651f317bf69d2b0370b6b17c1d 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-icmp6.c,v 1.3 2000-01-09 21:34:17 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index 5350153c93c3b235cd744d3d58499ec2e63561a7..5f01d186199a908f84b2f50427132dac4ac59c7a 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-ip.c,v 2.1 1995/02/03 18:14:45 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ip6.c,v 1.3 2000-01-09 21:34:18 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index 1fb6b66cc69b277d941fee18e412adf535b5200f..a860e9615732e50a886ce39c651c3f0ec9a9c770 100644 (file)
 #include "config.h"
 #endif
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-ip6opts.c,v 1.3 2000-01-09 21:34:18 fenner Exp $";
+#endif
+
 #ifdef INET6
 #include <sys/param.h>
 #include <sys/time.h>
index ba2987ae480dfb94f299dbfc81c3864c50503806..2cecb3265a39c00af6cb8eedee5eed60a4fdbef1 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.3 2000-01-09 21:34:18 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index b6c414c8cee8c754e48b9ba4b84b30b71351bae0..977d9ee7b969b48510132f238c57a7bed7c8d422 100644 (file)
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#if 0
-#include <sys/cdefs.h>
-#ifndef lint
-__RCSID("$NetBSD: print-mobile.c,v 1.2 1998/09/30 08:57:01 hwr Exp $");
-#endif
-#endif
-
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-mobile.c,v 1.3 2000-01-09 21:34:18 fenner Exp $";
+#endif
+
 #include <sys/param.h>
 #include <sys/time.h>
 #include <sys/uio.h>
index 3288a29acf9130365cea4e6496b03dc6c0ed4aac..5e87ff5e0f41431f013a846f4db42132f457f82d 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-rip.c,v 2.1 1995/02/03 18:15:05 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ripng.c,v 1.3 2000-01-09 21:34:19 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index a0750e0bcff4592be290b62b9032888d5224010d..874c38cc17fea3fe8ce7aae959f9f9e7a01ee545 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-rt6.c,v 1.4 2000-01-09 21:34:19 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index 7fd9206fcd95e0670366892d542d69dbc9281d17..c38e7aa3529fe96247bec11fe2083d16e06ed24c 100644 (file)
@@ -13,7 +13,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Id: print-rx.c,v 1.6 2000-01-07 15:17:43 assar Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-rx.c,v 1.7 2000-01-09 21:34:19 fenner Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
index 9810cda90467946535b0a7ab104cc1c1d606af4f..b8510351773139d52f86fe171d49199a5e349a0f 100644 (file)
@@ -9,6 +9,11 @@
 #include "config.h"
 #endif
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-smb.c,v 1.4 2000-01-09 21:34:19 fenner Exp $";
+#endif
+
 #include <stdio.h>
 #include <string.h>
 #include <sys/types.h>
index df2147e612ff4508a718eaa8653a7e877b27298f..beb6be9105cc747c7902744f59d70cc701f7cf36 100644 (file)
 #include "config.h"
 #endif
 
-#ifdef HAVE_SYS_CDEFS_H
-#include <sys/cdefs.h>
-#endif
-#if 0
 #ifndef lint
-__RCSID("$NetBSD: print-telnet.c,v 1.2 1999/10/11 12:40:12 sjg Exp $");
-#endif
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/print-telnet.c,v 1.5 2000-01-09 21:34:20 fenner Exp $";
 #endif
 
 #include <sys/param.h>
index 68fd869f54537b15214353a0b5b0a8a339db0236..120129d2330bf3b5aff2c25e784677bc725548e1 100644 (file)
@@ -27,7 +27,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) print-vjc.c,v 1.1.2.2 1998/08/31 05:44:21 onoe Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-vjc.c,v 1.3 2000-01-09 21:34:20 fenner Exp $ (LBL)";
 #endif
 
 #include <sys/param.h>
index bcea660e592141e8f5fde27f527fdf965032afed..14e5c1db6206473fdbfc5f22eaccdef31a9c821c 100644 (file)
--- a/smbutil.c
+++ b/smbutil.c
@@ -9,6 +9,11 @@
 #include "config.h"
 #endif
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/smbutil.c,v 1.5 2000-01-09 21:34:20 fenner Exp $";
+#endif
+
 #include <sys/param.h>
 #include <sys/time.h>
 #include <sys/types.h>
index 8f9bcf2a189cbfec0be2f75fbff53657bf2be6e0..7b98fc19c9588a7e907e7e6075ec3e0d72045a01 100644 (file)
  * is provided ``as is'' without express or implied warranty.
  */
 
-#if defined(LIBC_SCCS) && !defined(lint)
-static const char sccsid[] = "@(#)strcasecmp.c 5.5 (Berkeley) 11/24/87";
-#endif /* LIBC_SCCS and not lint */
-
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
+#ifndef lint
+static const char rcsid[] =
+     "@(#) $Header: /tcpdump/master/tcpdump/strcasecmp.c,v 1.3 2000-01-09 21:34:21 fenner Exp $";
+#endif
+
 #include <sys/types.h>
 
 #include "interface.h"