- (bal) fixpaths fixed to stop it from quitely failing. Patch by
Mark D. Roth <roth@feep.net>
This commit is contained in:
parent
89ef41a784
commit
dbcea87063
|
@ -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
|
||||
|
|
15
fixpaths
15
fixpaths
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue