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
This commit is contained in:
Guy Harris 2002-03-14 21:22:11 +00:00
parent 7791aabe52
commit 178a866877
2 changed files with 3 additions and 2 deletions

View File

@ -918,6 +918,7 @@ Andrew C. Feren <aferen[AT]cetacean.com> {
Solaris packaging fixes
Add ifdefs to the top-level Makefile.nmake to avoid using
Python if PYTHON isn't defined
make-manuf fix
}
Tomas Kukosa <tomas.kukosa[AT]anfdata.cz> {

View File

@ -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>) {