aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mysql.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-08-04 19:42:29 +0200
committerEvan Huus <eapache@gmail.com>2014-08-04 19:22:29 +0000
commit4a2e968ff35b8b10f1c601382e0a79087687bb88 (patch)
treee9b48f0b247b401056f8fe1762a4100a63728ce9 /epan/dissectors/packet-mysql.c
parentc540e556d5a4a2023dfad1135cc1427a9149c217 (diff)
MySQL: decoding response fails
MySQL Response packets within an SSL stream are not correctly decoded. When not using SSL: - Decoding works - Multiple MySQL protocol entries per frame - Info==Response With SSL: - Decoding partly works - One MySQL protocol entry per fram - Info==Response Tabular From me: call dissect_mysql (with tcp_dissect_pdus..) and not dissect_mysql_pdu ! Bug: 10339 Change-Id: I253f6683105ed23b49a72865fea005e31e2594d8 Reviewed-on: https://code.wireshark.org/review/3412 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-mysql.c')
-rw-r--r--epan/dissectors/packet-mysql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mysql.c b/epan/dissectors/packet-mysql.c
index a9b4cc7024..d488567fb6 100644
--- a/epan/dissectors/packet-mysql.c
+++ b/epan/dissectors/packet-mysql.c
@@ -3050,7 +3050,7 @@ void proto_register_mysql(void)
"Whether the MySQL dissector should display the SQL query string in the INFO column.",
&mysql_showquery);
- new_register_dissector("mysql", dissect_mysql_pdu, proto_mysql);
+ new_register_dissector("mysql", dissect_mysql, proto_mysql);
}
/* dissector registration */