Protocol abbreviations should be all lower case, as they're used in
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 14 Feb 2000 04:21:04 +0000 (04:21 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 14 Feb 2000 04:21:04 +0000 (04:21 +0000)
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

packet-smb-mailslot.c

index be328160e9ac7a9df47a2f185d11ec60cb0d6df2..9d37b6b2dd29bb36b09c34a71af71c0949acb0ae 100644 (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));
 }