Add missing comments in syntax description for -z expert
[obnox/wireshark/wip.git] / doc / eproto2sgml
index e81fe8eb8a4151abaf0dea16825e618c09607dab..c8c832fa832d1c806cec136e98911d7ba2dc0eef 100644 (file)
@@ -1,14 +1,14 @@
 #!/usr/bin/perl
 #
-# Reads the display filter keyword dump produced by 'ethereal -G' and
+# Reads the display filter keyword dump produced by 'wireshark -G' and
 # formats it as an SGML bulleted list of protocols.
 #
-# STDIN is the ethereal glossary
+# STDIN is the wireshark glossary
 # arg1 is the pod template file. The =insert_dfilter_table token
 #      will be replaced by the pod-formatted glossary
 # STDOUT is the output
 #
-# $Id: eproto2sgml,v 1.2 2001/04/19 23:17:30 guy Exp $
+# $Id$
 
 # Read all the data into memory
 while (<STDIN>) {
@@ -53,7 +53,7 @@ close(TEMPLATE) || die "Can't close $template: $!\n";
 
 sub create_dfilter_table {
 
-        print "<itemizedlist id=\"EtherealListOfProtos\">\n";
+        print "<itemizedlist id=\"WiresharkListOfProtos\">\n";
 
        # Print each protocol
        for $proto_name (sort keys %proto_abbrev) {