diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-03-14 21:22:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-03-14 21:22:11 +0000 |
commit | 178a866877300930c4391d5229c155de5451ab9a (patch) | |
tree | de63cad3cb7cc9df289020214e63df34332d641f /make-manuf | |
parent | 7791aabe522d32eeb28851944f80499d5d90ca92 (diff) | |
download | wireshark-178a866877300930c4391d5229c155de5451ab9a.tar.gz wireshark-178a866877300930c4391d5229c155de5451ab9a.tar.bz2 wireshark-178a866877300930c4391d5229c155de5451ab9a.zip |
From Andrew Feren: minor patch to correct what looks like a cut and
paste error in an error message. The wrong filename is being displayed
if manuf can't be opened for writing.
svn path=/trunk/; revision=4944
Diffstat (limited to 'make-manuf')
-rwxr-xr-x | make-manuf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-manuf b/make-manuf index 26f128cc7b..7d5413d03f 100755 --- a/make-manuf +++ b/make-manuf @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# $Id: make-manuf,v 1.3 2001/10/07 22:19:14 guy Exp $ +# $Id: make-manuf,v 1.4 2002/03/14 21:22:11 guy Exp $ # # Make-manuf - Creates a file containing ethernet OUIs and their # company IDs. It merges the databases at @@ -61,7 +61,7 @@ open (TMPL, "< $template") || die "Couldn't open template file for reading ($template)\n"; open (OUT, "> $outfile") || - die "Couldn't open template file for writing ($template)\n"; + die "Couldn't open output file for writing ($outfile)\n"; # Write out the header and populate the OUI list with our entries. while ($line = <TMPL>) { |