diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-02-25 23:44:44 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-02-25 23:44:44 +0000 |
commit | 9105f362c2b2b8dbe69a107f3011fdd81f4e52bb (patch) | |
tree | 0e6c3aa8deaf678ed1d9af4e5b3679a2a1516c15 /epan/packet_info.h | |
parent | b9325102e64d43ef05874c3d0e19a4c42c6b96fd (diff) | |
download | wireshark-9105f362c2b2b8dbe69a107f3011fdd81f4e52bb.tar.gz wireshark-9105f362c2b2b8dbe69a107f3011fdd81f4e52bb.tar.bz2 wireshark-9105f362c2b2b8dbe69a107f3011fdd81f4e52bb.zip |
Make the DCE transport type an "int" so that -1 is a valid value and the
compiler doesn't say "that's unsigned, it can't possibly be equal to -1".
svn path=/trunk/; revision=13526
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r-- | epan/packet_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h index 624314b893..ffb0484ce6 100644 --- a/epan/packet_info.h +++ b/epan/packet_info.h @@ -124,7 +124,7 @@ typedef struct _packet_info { guint16 dst_idx; /* Dest port index (Cisco MDS-specific) */ guint16 vsan; /* Fibre channel/Cisco MDS-specific */ guint16 dcectxid; /* Context ID (DCERPC-specific) */ - guint16 dcetransporttype; /* Transport type + int dcetransporttype; /* Transport type * Value -1 means "not a DCERPC packet" */ guint16 dcetransportsalt; /* fid: if transporttype==DCE_CN_TRANSPORT_SMBPIPE */ |