diff options
Diffstat (limited to 'plugins/wimax/msg_ucd.c')
-rw-r--r-- | plugins/wimax/msg_ucd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wimax/msg_ucd.c b/plugins/wimax/msg_ucd.c index b725fd4221..cde80bb403 100644 --- a/plugins/wimax/msg_ucd.c +++ b/plugins/wimax/msg_ucd.c @@ -36,7 +36,7 @@ #define DEBUG */ -#include <gmodule.h> +#include <glib.h> #include <epan/packet.h> #include "wimax_tlv.h" #include "wimax_mac.h" @@ -702,8 +702,8 @@ void dissect_mac_mgmt_msg_ucd_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_t if(tree) { /* we are being asked for details */ - /* Get the tvb length */ - tvb_len = tvb_length(tvb); + /* Get the tvb reported length */ + tvb_len = tvb_reported_length(tvb); /* display MAC payload type UCD */ ucd_item = proto_tree_add_protocol_format(tree, proto_mac_mgmt_msg_ucd_decoder, tvb, offset, tvb_len, "Uplink Channel Descriptor (UCD) (%u bytes)", tvb_len); /* add MAC UCD subtree */ |