aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-18 20:19:49 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-18 20:19:49 +0000
commit4483eab426940375800723390c11185f49a13b10 (patch)
tree332faa3857357eb750d858d3fb9efb168f4e5355 /epan/dissectors/packet-ssl.c
parent8153d2b545177e4086795a90f1af87e642417eb3 (diff)
Update calls to proto_tree_add_bytes_format to reflect r27047.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27053 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ssl.c')
-rw-r--r--epan/dissectors/packet-ssl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index 2a0c5fb491..c1d2b80891 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -2046,7 +2046,6 @@ dissect_ssl3_hnd_hello_ext(tvbuff_t *tvb,
proto_tree_add_bytes_format(ext_tree, hf_ssl_handshake_extension_data,
tvb, offset, ext_len,
- tvb_get_ptr(tvb, offset, ext_len),
"Data (%u byte%s)",
ext_len, plurality(ext_len, "", "s"));
offset += ext_len;
@@ -2873,7 +2872,6 @@ dissect_ssl2_hnd_client_hello(tvbuff_t *tvb, packet_info *pinfo,
proto_tree_add_bytes_format(tree,
hf_ssl_handshake_session_id,
tvb, offset, session_id_length,
- tvb_get_ptr(tvb, offset, session_id_length),
"Session ID (%u byte%s)",
session_id_length,
plurality(session_id_length, "", "s"));