aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-05-24 23:23:06 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-05-24 23:23:06 +0000
commit906506f6cfb55b833b0fd16e78f63b465a71c9be (patch)
treef377272d423ba2cc643bb31e4dced11547de544a /epan/dissectors
parent4adce3153e790e70091a1a2f2d106b08e7b72205 (diff)
Use proto_tree_add_uint64 for 64 bits values.
svn path=/trunk/; revision=28465
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-memcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-memcache.c b/epan/dissectors/packet-memcache.c
index 133c9c7eff..ec084e5c06 100644
--- a/epan/dissectors/packet-memcache.c
+++ b/epan/dissectors/packet-memcache.c
@@ -1266,7 +1266,7 @@ get_response_dissector (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int
response_chars[tokenlen] = '\0';
cas = (guint64) strtoul (response_chars, NULL, 10);
- proto_tree_add_uint (tree, hf_cas, tvb, offset, tokenlen, cas);
+ proto_tree_add_uint64 (tree, hf_cas, tvb, offset, tokenlen, cas);
offset += (int) (next_token - line);
line = next_token;
@@ -1478,7 +1478,7 @@ memcache_request_dissector (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
response_chars[tokenlen] = '\0';
cas = (guint64) strtoul (response_chars, NULL, 10);
- proto_tree_add_uint (tree, hf_cas, tvb, offset, tokenlen, cas);
+ proto_tree_add_uint64 (tree, hf_cas, tvb, offset, tokenlen, cas);
offset += (int) (next_token - line);
line = next_token;