- (bal) fixpaths fixed to stop it from quitely failing. Patch by

Mark D. Roth <roth@feep.net>
This commit is contained in:
Ben Lindstrom 2000-11-08 01:07:51 +00:00
parent 89ef41a784
commit dbcea87063
2 changed files with 11 additions and 9 deletions

View File

@ -1,7 +1,10 @@
20001107
- (bal) acconfig.in - removed the double "USE_PIPES" entry.
- (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
Mark Miller <markm@swoon.net>
- (bal) sshd.init files corrected to assign $? to RETVAL. Patch by
Jarno Huuskonen <jhuuskon@messi.uku.fi>
- (bal) fixpaths fixed to stop it from quitely failing. Patch by
Mark D. Roth <roth@feep.net>
20001106
- (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs

View File

@ -37,14 +37,13 @@ for $f (@ARGV) {
$of = $2.".$ext";
open(IN, "<$f") || die ("$0: input file $f missing!\n");
if (open(OUT, ">$of")) {
while (<IN>) {
for $s (keys(%def)) {
s#$s#$def{$s}#;
} # for $s
print OUT;
} # while <IN>
} # if (outfile open)
open(OUT, ">$of") || die ("$0: cannot create output file $of: $!\n");
while (<IN>) {
for $s (keys(%def)) {
s#$s#$def{$s}#;
} # for $s
print OUT;
} # while <IN>
} # for $f
exit 0;