aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-pipe.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-14 04:18:57 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-14 04:18:57 +0000
commit9f8ef2ecb4a6bf1cf930e545b662a661cf952b54 (patch)
treeef08697ec8b849afcca233ae1421232e22f330fe /packet-smb-pipe.c
parent0cfcec409fda893b478ec22c9b4c20dbe3426b4a (diff)
downloadwireshark-9f8ef2ecb4a6bf1cf930e545b662a661cf952b54.tar.gz
wireshark-9f8ef2ecb4a6bf1cf930e545b662a661cf952b54.tar.bz2
wireshark-9f8ef2ecb4a6bf1cf930e545b662a661cf952b54.zip
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 "Lanman" to filter for Lanman packets is overkill. Get rid of the comment saying that the routines for mailslot and pipe dissecting should perhaps be migrated to another file, as this and "packet-smb-mailslot.c" are the other files to which they were migrated. svn path=/trunk/; revision=1632
Diffstat (limited to 'packet-smb-pipe.c')
-rw-r--r--packet-smb-pipe.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/packet-smb-pipe.c b/packet-smb-pipe.c
index ae93496def..42b900119f 100644
--- a/packet-smb-pipe.c
+++ b/packet-smb-pipe.c
@@ -2,7 +2,7 @@
* Routines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: packet-smb-pipe.c,v 1.1 2000/02/14 04:02:09 guy Exp $
+ * $Id: packet-smb-pipe.c,v 1.2 2000/02/14 04:18:57 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -146,11 +146,6 @@ find_lanman(int lanman_num)
}
-/*
- * The routines for mailslot and pipe dissecting should be migrated to another
- * file soon?
- */
-
#define NETSHAREENUM 0x00 /* 00 */
#define NETSERVERENUM2 0x68 /* 104 */
@@ -1236,9 +1231,7 @@ register_proto_smb_pipe( void){
proto_smb_lanman = proto_register_protocol(
- "Microsoft Windows Lanman Protocol", "Lanman");
-
- proto_register_subtree_array(ett, array_length(ett));
+ "Microsoft Windows Lanman Protocol", "lanman");
+ proto_register_subtree_array(ett, array_length(ett));
}
-