summaryrefslogtreecommitdiff
path: root/print-isoclns.c
diff options
context:
space:
mode:
authorguy <guy>2002-04-25 04:47:42 +0000
committerguy <guy>2002-04-25 04:47:42 +0000
commit4c51c6177bc42e7af3df696214fbd4ca32ddff7a (patch)
tree4a59081a59e761dd6f3584ae8d708b78e6a040f1 /print-isoclns.c
parenta7aa2961a40bb2095b66429d1847e5370ee8ce7a (diff)
downloadtcpdump-4c51c6177bc42e7af3df696214fbd4ca32ddff7a.tar.gz
Make some "u_char *"s "char *"s, to eliminate signed vs. unsigned
complaints from some compilers.
Diffstat (limited to 'print-isoclns.c')
-rw-r--r--print-isoclns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/print-isoclns.c b/print-isoclns.c
index 0f457f29..d45e77a5 100644
--- a/print-isoclns.c
+++ b/print-isoclns.c
@@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-isoclns.c,v 1.44 2002-04-12 07:56:49 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-isoclns.c,v 1.45 2002-04-25 04:47:42 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -742,7 +742,7 @@ isis_print_lspid(const u_char *cp)
*/
static int
-isis_print_unknown_data(const u_char *cp,const u_char *lf,int len)
+isis_print_unknown_data(const u_char *cp,const char *lf,int len)
{
int i;
@@ -852,7 +852,7 @@ isis_print_tlv_ip_reach (const u_char *cp, int length)
*/
static int
-isis_print_ip_reach_subtlv (const u_char *tptr,int subt,int subl,const u_char *lf) {
+isis_print_ip_reach_subtlv (const u_char *tptr,int subt,int subl,const char *lf) {
switch(subt) {
case SUBTLV_EXT_IP_REACH_ADMIN_TAG:
@@ -885,7 +885,7 @@ trunctlv:
*/
static int
-isis_print_is_reach_subtlv (const u_char *tptr,int subt,int subl,const u_char *lf) {
+isis_print_is_reach_subtlv (const u_char *tptr,int subt,int subl,const char *lf) {
int i,j;
float bw; /* copy buffer for several subTLVs */