aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-01-20 02:13:31 +0000
committerJoão Valverde <j@v6e.pt>2016-01-21 02:26:49 +0000
commit770eb649d847b620b5bc820a5cc6eef6e4c2d330 (patch)
treefd48693cc12ce9a73a290fead8bd33a290a387e3 /epan/dissectors
parentd54bc2b185e1e13f485ea22f646f6d95890824d4 (diff)
Add missing const qualifiers for packet-ssl.c [-Wcast-qual]
Change-Id: Idb7e3e1be3f876d5953b7dc667c7bc3feceff331 Reviewed-on: https://code.wireshark.org/review/13438 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan/dissectors')
-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 105aa390a2..6a5ac2a8fe 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -459,8 +459,8 @@ ssl_follow_tap_listener(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _
{
follow_info_t * follow_info = (follow_info_t*) tapdata;
SslDecryptedRecord * rec = NULL;
- SslDataInfo * appl_data = NULL;
- SslPacketInfo * pi = (SslPacketInfo*)ssl;
+ const SslDataInfo * appl_data = NULL;
+ const SslPacketInfo * pi = (const SslPacketInfo*)ssl;
show_stream_t from = FROM_CLIENT;
/* Skip packets without decrypted payload data. */