diff options
author | Tim Potter <tpot@samba.org> | 2003-06-17 05:29:46 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-06-17 05:29:46 +0000 |
commit | 24d1d3a828815b63fee23beb2daa068e5271f08d (patch) | |
tree | a5422bf833e7dc12ed834fc29fa61bf2acd116a4 /packet-dcerpc-nt.c | |
parent | b65f1a77c1a7c5ffe15e76aa561028aa361e07cd (diff) | |
download | wireshark-24d1d3a828815b63fee23beb2daa068e5271f08d.tar.gz wireshark-24d1d3a828815b63fee23beb2daa068e5271f08d.tar.bz2 wireshark-24d1d3a828815b63fee23beb2daa068e5271f08d.zip |
Remove silly dcerpc_smb_check_long_frame() function and all calls to it.
A much better place to do this is after the subdissector function has
been called in dcercp_try_handoff().
svn path=/trunk/; revision=7895
Diffstat (limited to 'packet-dcerpc-nt.c')
-rw-r--r-- | packet-dcerpc-nt.c | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/packet-dcerpc-nt.c b/packet-dcerpc-nt.c index d62dc49ad7..55d46c6adf 100644 --- a/packet-dcerpc-nt.c +++ b/packet-dcerpc-nt.c @@ -2,7 +2,7 @@ * Routines for DCERPC over SMB packet disassembly * Copyright 2001-2003, Tim Potter <tpot@samba.org> * - * $Id: packet-dcerpc-nt.c,v 1.75 2003/06/05 04:22:03 guy Exp $ + * $Id: packet-dcerpc-nt.c,v 1.76 2003/06/17 05:29:46 tpot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -655,28 +655,6 @@ static void init_pol_hash(void) pol_hash = g_hash_table_new(pol_hash_fn, pol_hash_compare); } -/* Check if there is unparsed data remaining in a frame and display an - error. I guess this could be made into an exception like the malformed - frame exception. For the DCERPC over SMB dissectors a long frame - indicates a bug in a dissector. */ - -void dcerpc_smb_check_long_frame(tvbuff_t *tvb, int offset, - packet_info *pinfo, proto_tree *tree) -{ - if (tvb_length_remaining(tvb, offset) != 0) { - - proto_tree_add_text( - tree, tvb, offset, tvb_length_remaining(tvb, offset), - "[Long frame (%d bytes): SPOOLSS]", - tvb_length_remaining(tvb, offset)); - - if (check_col(pinfo->cinfo, COL_INFO)) - col_append_fstr(pinfo->cinfo, COL_INFO, - "[Long frame (%d bytes): SPOOLSS]", - tvb_length_remaining(tvb, offset)); - } -} - /* Dissect a NT status code */ int |