diff options
author | Guy Harris <guy@alum.mit.edu> | 2007-05-27 18:33:13 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2007-05-27 18:33:13 +0000 |
commit | 01844e151ad3b5882ef36893aac6339d4ccfd0a7 (patch) | |
tree | de9cddb64f954a8a5c63aa0fe2c5e32bfac6ed06 /plugins/wimax/packet-wmx.c | |
parent | d99b6c0a8b53bcfd1b857e259d4cb1632302e408 (diff) | |
download | wireshark-01844e151ad3b5882ef36893aac6339d4ccfd0a7.tar.gz wireshark-01844e151ad3b5882ef36893aac6339d4ccfd0a7.tar.bz2 wireshark-01844e151ad3b5882ef36893aac6339d4ccfd0a7.zip |
Use tvb_reported_length() to get the amount of data we should look at;
the number of bytes in the packet or subset of the packet is the
reported length, tvb_length() just gives you the amount of that data
that was actually captured.
Include <glib.h>, not <gmodule.h>, even in plugins.
Fix the version numbers in the rc files.
svn path=/trunk/; revision=21960
Diffstat (limited to 'plugins/wimax/packet-wmx.c')
-rw-r--r-- | plugins/wimax/packet-wmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wimax/packet-wmx.c b/plugins/wimax/packet-wmx.c index 7cac119a02..fa78768dbc 100644 --- a/plugins/wimax/packet-wmx.c +++ b/plugins/wimax/packet-wmx.c @@ -35,7 +35,7 @@ #include "moduleinfo.h" #include <string.h> -#include <gmodule.h> +#include <glib.h> #include <epan/packet.h> #include <epan/prefs.h> #include <epan/address.h> |