aboutsummaryrefslogtreecommitdiffstats
path: root/util/ssldir.pl
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1998-12-22 15:04:48 +0000
committerRalf S. Engelschall <rse@openssl.org>1998-12-22 15:04:48 +0000
commit651d0aff98d28e2db146afa1790e9e22f3ef22db (patch)
tree064b04a2d7eddda845048c0278df8bbb068622f5 /util/ssldir.pl
parent31b8d8684441e6cd5138832bb1b2ddb10acd6ba6 (diff)
downloadopenssl-651d0aff98d28e2db146afa1790e9e22f3ef22db.tar.gz
Various cleanups and fixed by Marc and Ralf to start the OpenTLS project
Diffstat (limited to 'util/ssldir.pl')
-rwxr-xr-xutil/ssldir.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ssldir.pl b/util/ssldir.pl
index 6c30685206..acbe12e240 100755
--- a/util/ssldir.pl
+++ b/util/ssldir.pl
@@ -46,7 +46,7 @@ sub dofile
open(OUT,">$ff.new") || die "unable to open $f:$!\n";
print OUT @a;
close(OUT);
- rename($f,"$ff.old") || die "unable to rename $f\n";
+ rename($f,"$ff.bak") || die "unable to rename $f\n";
rename("$ff.new",$f) || die "unable to rename $ff.new\n";
}