aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mysql.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-11-30 07:15:17 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-11-30 07:15:17 +0000
commitdc0d48928aa39a69dd694eff838114a407fd2b6f (patch)
treecca32f105e3936f5d6a23798bc309608396c05b7 /epan/dissectors/packet-mysql.c
parentb3a34018888bdbce086a9b980199f20bbd7bced9 (diff)
From Martin Warnesi:
Attached updated patch to use "dissect_mysql_pdu" instead of "dissect_mysql" when registering the protocol dissector. svn path=/trunk/; revision=20021
Diffstat (limited to 'epan/dissectors/packet-mysql.c')
-rw-r--r--epan/dissectors/packet-mysql.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-mysql.c b/epan/dissectors/packet-mysql.c
index 6ebc8e6ce0..2a8a405efd 100644
--- a/epan/dissectors/packet-mysql.c
+++ b/epan/dissectors/packet-mysql.c
@@ -901,6 +901,8 @@ void proto_register_mysql(void)
"Whether the MySQL dissector should reassemble MySQL buffers spanning multiple TCP segments."
" To use this option, you must also enable \"Allow subdissectors to reassemble TCP streams\" in the TCP protocol settings.",
&mysql_desegment);
+
+ register_dissector("mysql", dissect_mysql_pdu, proto_mysql);
}