aboutsummaryrefslogtreecommitdiffstats
path: root/packet-esis.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-30 23:56:58 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-30 23:56:58 +0000
commite60080b20138842736dfa3a4b544d43be6accfef (patch)
tree8c29f502c726c8068ab4c811f033add2ead1b0fe /packet-esis.c
parent65b9df103b423c5e43a3cfded4a01c71ac0eb034 (diff)
From Joerg Mayer: get rid of unused PDU type argument to
"dissect_osi_options()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5318 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-esis.c')
-rw-r--r--packet-esis.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-esis.c b/packet-esis.c
index ee7748be76..56664a72bb 100644
--- a/packet-esis.c
+++ b/packet-esis.c
@@ -2,7 +2,7 @@
* Routines for ISO/OSI End System to Intermediate System
* Routing Exchange Protocol ISO 9542.
*
- * $Id: packet-esis.c,v 1.24 2002/04/07 22:00:34 guy Exp $
+ * $Id: packet-esis.c,v 1.25 2002/04/30 23:56:58 guy Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@@ -182,7 +182,7 @@ esis_dissect_esh_pdu( u_char len, tvbuff_t *tvb, proto_tree *tree) {
offset += sal;
len -= ( sal + 1 );
}
- dissect_osi_options( PDU_TYPE_ESIS_ESH, len, tvb, offset, tree );
+ dissect_osi_options( len, tvb, offset, tree );
}
} /* esis_dissect_esh_pdu */ ;
@@ -205,7 +205,7 @@ esis_dissect_ish_pdu( u_char len, tvbuff_t *tvb, proto_tree *tree) {
offset += netl;
len -= ( netl + 1 );
- dissect_osi_options( PDU_TYPE_ESIS_ISH, len, tvb, offset, tree );
+ dissect_osi_options( len, tvb, offset, tree );
}
};
@@ -255,7 +255,7 @@ esis_dissect_redirect_pdu( u_char len, tvbuff_t *tvb, proto_tree *tree) {
offset += tmpl;
len -= ( tmpl + 1 );
}
- dissect_osi_options( PDU_TYPE_ESIS_RD, len, tvb, offset, tree );
+ dissect_osi_options( len, tvb, offset, tree );
}
}