aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-06-16 06:32:20 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-06-16 06:32:20 +0000
commit40c5c0df74ffdb405cddb81f4f53e366692da831 (patch)
treece96da1eb0535078b6c2b96b31fc8c7aa204cb8e
parent2abc21d50f8a40bfb0d0ff8d9a801be53705dc4f (diff)
"dissect_isup_thin()" is a new-style dissector; register it as such.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14653 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--epan/dissectors/packet-isup_thin.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/epan/dissectors/packet-isup_thin.c b/epan/dissectors/packet-isup_thin.c
index a6b772563f..a60fa59811 100644
--- a/epan/dissectors/packet-isup_thin.c
+++ b/epan/dissectors/packet-isup_thin.c
@@ -314,11 +314,9 @@ proto_register_isup_thin(void)
/*
* Register the dissector by name, so other dissectors can
- * grab it by name rather than just referring to it directly
- * (you can't refer to it directly from a plugin dissector
- * on Windows without stuffing it into the Big Transfer Vector).
+ * grab it by name rather than just referring to it directly.
*/
- register_dissector("isup_thin", dissect_isup_thin, proto_isup_thin);
+ new_register_dissector("isup_thin", dissect_isup_thin, proto_isup_thin);
}