Print error messages to stderr, not stdout.

This commit is contained in:
Peter Wemm 2000-06-14 02:45:11 +00:00
parent 70776a9c0b
commit 2c7c3a91e9
3 changed files with 3 additions and 3 deletions

View File

@ -89,6 +89,6 @@ while (<STDIN>) {
}
next;
}
print "unrecognized config token $key\n";
print STDERR "unrecognized config token $key\n";
}
}

View File

@ -89,6 +89,6 @@ while (<STDIN>) {
}
next;
}
print "unrecognized config token $key\n";
print STDERR "unrecognized config token $key\n";
}
}

View File

@ -82,6 +82,6 @@ while (<STDIN>) {
}
next;
}
print "unrecognized config token $key\n";
print STDERR "unrecognized config token $key\n";
}
}