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
This commit is contained in:
Guy Harris 2000-02-14 04:21:04 +00:00
parent 9f8ef2ecb4
commit 4b72e6b99a
1 changed files with 3 additions and 3 deletions

View File

@ -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));
}