add NetBSD RCSID where necessary.

add __RCSID where necessary.
make sure "make lint" does not raise fatal error (print-nfs.c)
This commit is contained in:
itojun 1999-09-04 03:36:41 +00:00
parent c588aaf55f
commit 159487207b
14 changed files with 83 additions and 17 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-ah.c,v 1.2 1999/07/04 02:57:51 itojun Exp $ */
/* $NetBSD: print-ah.c,v 1.3 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-ah.c,v 1.3 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-esp.c,v 1.2 1999/07/04 02:57:51 itojun Exp $ */
/* $NetBSD: print-esp.c,v 1.3 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-esp.c,v 1.3 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#include <string.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-frag6.c,v 1.3 1999/08/26 11:16:06 itojun Exp $ */
/* $NetBSD: print-frag6.c,v 1.4 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-frag6.c,v 1.4 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#ifdef INET6

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-hdlc.c,v 1.2 1998/07/25 11:39:53 explorer Exp $ */
/* $NetBSD: print-hdlc.c,v 1.3 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1990, 1991, 1993, 1994
@ -21,6 +21,11 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef lint
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-hdlc.c,v 1.3 1999/09/04 03:36:41 itojun Exp $");
#endif
#ifdef HAVE_HDLC
#include <sys/param.h>
#include <sys/time.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-icmp6.c,v 1.4 1999/07/26 06:26:58 itojun Exp $ */
/* $NetBSD: print-icmp6.c,v 1.5 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-icmp6.c,v 1.5 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#ifdef INET6

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-ip6.c,v 1.2 1999/07/04 02:57:51 itojun Exp $ */
/* $NetBSD: print-ip6.c,v 1.3 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-ip.c,v 2.1 1995/02/03 18:14:45 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-ip6.c,v 1.3 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#ifdef INET6

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-ip6opts.c,v 1.2 1999/07/04 02:57:51 itojun Exp $ */
/* $NetBSD: print-ip6opts.c,v 1.3 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (C) 1998 WIDE Project.
@ -29,6 +29,11 @@
* SUCH DAMAGE.
*/
#ifndef lint
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-ip6opts.c,v 1.3 1999/09/04 03:36:41 itojun Exp $");
#endif
#ifdef INET6
#include <sys/param.h>
#include <sys/time.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: print-ipcomp.c,v 1.2 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
* The Regents of the University of California. All rights reserved.
@ -20,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-ipcomp.c,v 1.2 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#include <string.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: print-isakmp.c,v 1.2 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
@ -29,8 +31,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) $Header: /cvsroot/src/usr.sbin/tcpdump/Attic/print-isakmp.c,v 1.1 1999/07/02 11:31:34 itojun Exp $ (LBL)";
"@(#) $Header: /cvsroot/src/usr.sbin/tcpdump/Attic/print-isakmp.c,v 1.2 1999/09/04 03:36:41 itojun Exp $ (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-isakmp.c,v 1.2 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
#include <string.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-nfs.c,v 1.9 1998/07/26 16:01:12 mycroft Exp $ */
/* $NetBSD: print-nfs.c,v 1.10 1999/09/04 03:36:41 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
@ -27,7 +27,7 @@
static const char rcsid[] =
"@(#) Header: print-nfs.c,v 1.65 97/08/17 13:24:22 leres Exp (LBL)";
#else
__RCSID("$NetBSD: print-nfs.c,v 1.9 1998/07/26 16:01:12 mycroft Exp $");
__RCSID("$NetBSD: print-nfs.c,v 1.10 1999/09/04 03:36:41 itojun Exp $");
#endif
#endif
@ -1587,5 +1587,5 @@ interp_reply(const struct rpc_msg *rp, u_int32_t proc, u_int32_t vers, int lengt
}
if (!nfserr)
fputs(" [|nfs]", stdout);
trunc:
trunc:;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-ospf6.c,v 1.3 1999/07/06 13:05:14 itojun Exp $ */
/* $NetBSD: print-ospf6.c,v 1.4 1999/09/04 03:36:42 itojun Exp $ */
/*
* Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997
@ -24,8 +24,8 @@
*/
#ifndef lint
static const char rcsid[] =
"@(#) $Header: /cvsroot/src/usr.sbin/tcpdump/Attic/print-ospf6.c,v 1.3 1999/07/06 13:05:14 itojun Exp $ (LBL)";
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-ospf6.c,v 1.4 1999/09/04 03:36:42 itojun Exp $");
#endif
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-ripng.c,v 1.2 1999/07/04 02:57:51 itojun Exp $ */
/* $NetBSD: print-ripng.c,v 1.3 1999/09/04 03:36:42 itojun Exp $ */
/*
* Copyright (c) 1989, 1990, 1991, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-rip.c,v 2.1 1995/02/03 18:15:05 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-ripng.c,v 1.3 1999/09/04 03:36:42 itojun Exp $");
#endif
#endif
#ifdef INET6

View File

@ -1,4 +1,4 @@
/* $NetBSD: print-rt6.c,v 1.2 1999/07/04 02:57:51 itojun Exp $ */
/* $NetBSD: print-rt6.c,v 1.3 1999/09/04 03:36:42 itojun Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
@ -22,8 +22,13 @@
*/
#ifndef lint
#if 0
static const char rcsid[] =
"@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-rt6.c,v 1.3 1999/09/04 03:36:42 itojun Exp $");
#endif
#endif
#ifdef INET6

View File

@ -1,3 +1,5 @@
/* $NetBSD: print-token.c,v 1.3 1999/09/04 03:36:42 itojun Exp $ */
/*
* Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996
* The Regents of the University of California. All rights reserved.
@ -19,9 +21,14 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef lint
#if 0
static char rcsid[] =
"@(#)$Header: /cvsroot/src/usr.sbin/tcpdump/Attic/print-token.c,v 1.2 1999/03/25 05:07:34 itohy Exp $ (LBL)";
"@(#)$Header: /cvsroot/src/usr.sbin/tcpdump/Attic/print-token.c,v 1.3 1999/09/04 03:36:42 itojun Exp $ (LBL)";
#else
#include <sys/cdefs.h>
__RCSID("$NetBSD: print-token.c,v 1.3 1999/09/04 03:36:42 itojun Exp $");
#endif
#endif
#ifdef HAVE_TOKEN