aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-mailslot.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-02-14 04:21:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-02-14 04:21:04 +0000
commit4f70d9eb619fc57b80df0cd942ecd659e1a27972 (patch)
tree4b625e2b06fea043bb2197fdd4aa9f9577fb3ba6 /packet-smb-mailslot.c
parentcc95dd12faff45d54ffa167ba64db2faecf49cfb (diff)
Protocol abbreviations should be all lower case, as they're used in
filter expressions, and names in those expressions are currently case-sensitive, and obliging people to type "Mailslot" to filter for SMB mailslot packets is overkill. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1633 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-smb-mailslot.c')
-rw-r--r--packet-smb-mailslot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-smb-mailslot.c b/packet-smb-mailslot.c
index be328160e9..9d37b6b2dd 100644
--- a/packet-smb-mailslot.c
+++ b/packet-smb-mailslot.c
@@ -2,7 +2,7 @@
* Routines for smb mailslot packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-smb-mailslot.c,v 1.2 2000/02/14 04:11:06 guy Exp $
+ * $Id: packet-smb-mailslot.c,v 1.3 2000/02/14 04:21:04 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -179,7 +179,7 @@ register_proto_smb_mailslot( void){
};
proto_smb_msp = proto_register_protocol(
- "SMB MailSlot Protocol", "Mailslot");
+ "SMB MailSlot Protocol", "mailslot");
- proto_register_subtree_array(ett, array_length(ett));
+ proto_register_subtree_array(ett, array_length(ett));
}