diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rwxr-xr-x | make-manuf | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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> { 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>) { |