aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-mailslot.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-14 04:21:04 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-14 04:21:04 +0000
commit4b72e6b99a076d08301f1eb95c5a2c2ed0deca34 (patch)
tree4b625e2b06fea043bb2197fdd4aa9f9577fb3ba6 /packet-smb-mailslot.c
parent9f8ef2ecb4a6bf1cf930e545b662a661cf952b54 (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. svn path=/trunk/; revision=1633
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));
}