summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-07-19 15:11:34 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-07-19 15:11:34 +0000
commitfae881dc4519ee7198d6e91955c0792a8cbb5e5f (patch)
treeb9be42812a8c20f63443e63864309c3333e65331
parenta6dd85945407fbcd4054648b948220df47efd44f (diff)
downloadwireshark-fae881dc4519ee7198d6e91955c0792a8cbb5e5f.tar.gz
Put register_dissector() call back in
svn path=/trunk/; revision=22359
-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 45efb72497..df21b4250b 100644
--- a/epan/dissectors/packet-mysql.c
+++ b/epan/dissectors/packet-mysql.c
@@ -926,6 +926,8 @@ void proto_register_mysql(void)
"Show SQL Query string in INFO column",
"Whether the MySQL dissector should display the SQL query string in the INFO column.",
&mysql_showquery);
+
+ register_dissector("mysql", dissect_mysql_pdu, proto_mysql);
}