aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-imap.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-29 08:31:38 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-29 08:31:38 +0000
commit24c8815c09e95b8eb3c83c5299882220032a0698 (patch)
tree82e43b17ba8463dd69cb4739de217adbc4cebf85 /epan/dissectors/packet-imap.c
parent95279cb92c9e6cc80db79dcc6402f98b1cea31ac (diff)
make these two protocols (that are commonly transported atop SSL) register themself with their name so the new SSL preference parsing will be able to find them
svn path=/trunk/; revision=18608
Diffstat (limited to 'epan/dissectors/packet-imap.c')
-rw-r--r--epan/dissectors/packet-imap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-imap.c b/epan/dissectors/packet-imap.c
index 0f5f1be5c6..addb20a49b 100644
--- a/epan/dissectors/packet-imap.c
+++ b/epan/dissectors/packet-imap.c
@@ -178,6 +178,7 @@ proto_register_imap(void)
proto_imap = proto_register_protocol("Internet Message Access Protocol",
"IMAP", "imap");
+ register_dissector("imap", dissect_imap, proto_imap);
proto_register_field_array(proto_imap, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
}