aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-10-29 22:18:44 +0000
committerBill Meier <wmeier@newsguy.com>2010-10-29 22:18:44 +0000
commit28402479cc7926165a07168a472d61836d3d240e (patch)
tree77060af3ec125dae0b75f40793a8a63879e035b3 /epan/dissectors/packet-ssl.c
parent6eba069093ef665b3fa5f179dd315ab89916c4e7 (diff)
Use value_string_ext fcns to access two value-string arrays;
Reorder value-string arrays slightly so they are in ascending order. svn path=/trunk/; revision=34699
Diffstat (limited to 'epan/dissectors/packet-ssl.c')
-rw-r--r--epan/dissectors/packet-ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index 227e25e3a5..d689ae4aa9 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -4133,12 +4133,12 @@ proto_register_ssl(void)
},
{ &hf_ssl_handshake_cipher_suite,
{ "Cipher Suite", "ssl.handshake.ciphersuite",
- FT_UINT16, BASE_HEX, VALS(ssl_31_ciphersuite), 0x0,
+ FT_UINT16, BASE_HEX|BASE_EXT_STRING, &ssl_31_ciphersuite_ext, 0x0,
NULL, HFILL }
},
{ &hf_ssl2_handshake_cipher_spec,
{ "Cipher Spec", "ssl.handshake.cipherspec",
- FT_UINT24, BASE_HEX, VALS(ssl_20_cipher_suites), 0x0,
+ FT_UINT24, BASE_HEX|BASE_EXT_STRING, &ssl_20_cipher_suites_ext, 0x0,
"Cipher specification", HFILL }
},
{ &hf_ssl_handshake_session_id,