aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-06-06 23:27:21 +0000
committerGerald Combs <gerald@wireshark.org>2006-06-06 23:27:21 +0000
commit4ed6fc0bc38c1540bc96c212bc9f2003c9cd12d2 (patch)
tree0504a120491b81fff192bbb567f93537e6e18ccf /tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
parent4be9eaddb33e5e5da91a2864e8a380672a4dcd6e (diff)
Ethereal -> Wireshark
svn path=/trunk/; revision=18374
Diffstat (limited to 'tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm')
-rw-r--r--tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm b/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
index bbb3d777d1..f42d73a832 100644
--- a/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
+++ b/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
@@ -10,18 +10,18 @@
=head1 NAME
-Parse::Pidl::Ethereal::NDR - Parser generator for Wireshark
+Parse::Pidl::Wireshark::NDR - Parser generator for Wireshark
=cut
-package Parse::Pidl::Ethereal::NDR;
+package Parse::Pidl::Wireshark::NDR;
use strict;
use Parse::Pidl::Typelist qw(getType);
use Parse::Pidl::Util qw(has_property ParseExpr property_matches make_str);
use Parse::Pidl::NDR qw(ContainsString GetNextLevel);
use Parse::Pidl::Dump qw(DumpTypedef DumpFunction);
-use Parse::Pidl::Ethereal::Conformance qw(ReadConformance);
+use Parse::Pidl::Wireshark::Conformance qw(ReadConformance);
use File::Basename;
use vars qw($VERSION);
@@ -789,7 +789,7 @@ sub Initialize($)
}
#####################################################################
-# Generate ethereal parser and header code
+# Generate wireshark parser and header code
sub Parse($$$$)
{
my($ndr,$idl_file,$h_filename,$cnf_file) = @_;
@@ -834,7 +834,7 @@ sub Parse($$$$)
$res{headers} .= "#include \"$h_basename\"\n";
pidl_code "";
- # Ethereal protocol registration
+ # Wireshark protocol registration
ProcessInterface($_) foreach (@$ndr);