diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-02-17 00:51:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-02-17 00:51:21 +0000 |
commit | d92a1cd8e1f58a1ec46793f9052aa893a279e523 (patch) | |
tree | 6c3672ed6745221c5a874b342129457a1135f49d /packet-eap.c | |
parent | ac5a603cb77582b38948307a505e480352b7b75d (diff) | |
download | wireshark-d92a1cd8e1f58a1ec46793f9052aa893a279e523.tar.gz wireshark-d92a1cd8e1f58a1ec46793f9052aa893a279e523.tar.bz2 wireshark-d92a1cd8e1f58a1ec46793f9052aa893a279e523.zip |
With the tvbuffication of all dissectors, the "packet_info" structure no
longer contains length fields, so there's no need to pass a "packet_info
*" argument to "set_actual_length()".
svn path=/trunk/; revision=4748
Diffstat (limited to 'packet-eap.c')
-rw-r--r-- | packet-eap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-eap.c b/packet-eap.c index 58edd98c6c..fa81cbfce6 100644 --- a/packet-eap.c +++ b/packet-eap.c @@ -1,7 +1,7 @@ /* packet-eap.c * Routines for EAP Extensible Authentication Protocol header disassembly * - * $Id: packet-eap.c,v 1.6 2002/02/06 22:45:43 guy Exp $ + * $Id: packet-eap.c,v 1.7 2002/02/17 00:51:19 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -94,7 +94,7 @@ dissect_eap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) len = eaph.eap_len; - set_actual_length(tvb, pinfo, len); + set_actual_length(tvb, len); eap_tree = NULL; |