aboutsummaryrefslogtreecommitdiffstats
path: root/packet-clnp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-31 21:36:05 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-31 21:36:05 +0000
commitcb4e9ba54b53b57131649623866f35fe6b32cc85 (patch)
tree3eb9ddf9c7b014b50547af0e045f13e391bfffec /packet-clnp.c
parent4e2a32d0919588a3ea9be6c079c8585f5f2e5164 (diff)
Get rid of an unused argument.
svn path=/trunk/; revision=5056
Diffstat (limited to 'packet-clnp.c')
-rw-r--r--packet-clnp.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/packet-clnp.c b/packet-clnp.c
index 025504622a..4cce57d479 100644
--- a/packet-clnp.c
+++ b/packet-clnp.c
@@ -1,7 +1,7 @@
/* packet-clnp.c
* Routines for ISO/OSI network and transport protocol packet disassembly
*
- * $Id: packet-clnp.c,v 1.51 2002/03/27 04:27:03 guy Exp $
+ * $Id: packet-clnp.c,v 1.52 2002/03/31 21:36:05 guy Exp $
* Laurent Deniel <deniel@worldnet.fr>
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
@@ -1405,8 +1405,7 @@ static int osi_decode_ER(tvbuff_t *tvb, int offset,
} /* osi_decode_ER */
static int osi_decode_UD(tvbuff_t *tvb, int offset,
- packet_info *pinfo, proto_tree *tree,
- gboolean *subdissector_found)
+ packet_info *pinfo, proto_tree *tree)
{
proto_item *ti;
proto_tree *cltp_tree = NULL;
@@ -1522,8 +1521,7 @@ static gboolean dissect_ositp_internal(tvbuff_t *tvb, packet_info *pinfo,
new_offset = osi_decode_ER(tvb, offset, pinfo, tree);
break;
case UD_TPDU :
- new_offset = osi_decode_UD(tvb, offset, pinfo, tree,
- &subdissector_found);
+ new_offset = osi_decode_UD(tvb, offset, pinfo, tree);
is_cltp = TRUE;
break;
default :