aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-10-29 15:44:11 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-10-29 15:44:11 +0000
commitaac7d5596ef53fbee1ba7001d5d7e2424bcbbaf1 (patch)
tree8fcb012be2624a5b046bbeb10780acf7f5dab517
parentf01cbcd296cc5711239ce9131fe988bc28eaead0 (diff)
From Alexis La Goutte via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5290 :
RequestID and ResponseID are unsigned. Show them in hex and decimal. svn path=/trunk/; revision=34686
-rw-r--r--epan/dissectors/packet-mongo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mongo.c b/epan/dissectors/packet-mongo.c
index 04f9e15dbe..4699e8dfd6 100644
--- a/epan/dissectors/packet-mongo.c
+++ b/epan/dissectors/packet-mongo.c
@@ -436,12 +436,12 @@ proto_register_mongo(void)
},
{ &hf_mongo_request_id,
{ "Request ID", "mongo.request_id",
- FT_INT32, BASE_DEC, NULL, 0x0,
+ FT_UINT32, BASE_HEX_DEC, NULL, 0x0,
"Identifier for this message", HFILL }
},
{ &hf_mongo_response_to,
{ "Response To", "mongo.response_to",
- FT_INT32, BASE_DEC, NULL, 0x0,
+ FT_UINT32, BASE_HEX_DEC, NULL, 0x0,
"RequestID from the original request", HFILL }
},
{ &hf_mongo_op_code,