aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-02-25 23:44:44 +0000
committerGuy Harris <guy@alum.mit.edu>2005-02-25 23:44:44 +0000
commit9105f362c2b2b8dbe69a107f3011fdd81f4e52bb (patch)
tree0e6c3aa8deaf678ed1d9af4e5b3679a2a1516c15 /epan/packet_info.h
parentb9325102e64d43ef05874c3d0e19a4c42c6b96fd (diff)
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.h2
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 */