diff options
author | guy <guy> | 2003-11-15 00:39:12 +0000 |
---|---|---|
committer | guy <guy> | 2003-11-15 00:39:12 +0000 |
commit | 3824a6c0417a551961d1a1bf4f94f10eff736afc (patch) | |
tree | 2b211ef3e3696745aad7db0423cbf80ccf37ca38 /print-lane.c | |
parent | 0a27c291d0f9324cfd36b6073fcddff248d0482f (diff) | |
download | tcpdump-3824a6c0417a551961d1a1bf4f94f10eff736afc.tar.gz |
From Neil Spring:
use "_U_" in the definitions of "rcsid[]", to eliminate
complaints about those variables being unused;
move the definitions after the include of "interface.h", or add
an include of "interface.h", so that "_U_" is defined.
Include "config.h" before including "tcpdump-stdinc.h" in
"missing/datalinks.c".
Diffstat (limited to 'print-lane.c')
-rw-r--r-- | print-lane.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print-lane.c b/print-lane.c index 3a21c148..363caa5b 100644 --- a/print-lane.c +++ b/print-lane.c @@ -20,10 +20,6 @@ * */ -#ifndef lint -static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-lane.c,v 1.20 2002-12-19 09:39:13 guy Exp $ (LBL)"; -#endif #ifdef HAVE_CONFIG_H #include "config.h" @@ -40,6 +36,10 @@ static const char rcsid[] = #include "ether.h" #include "lane.h" +#ifndef lint +static const char rcsid[] _U_ = + "@(#) $Header: /tcpdump/master/tcpdump/print-lane.c,v 1.21 2003-11-15 00:39:30 guy Exp $ (LBL)"; +#endif static const struct tok lecop2str[] = { { 0x0001, "configure request" }, { 0x0101, "configure response" }, |