summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2010-10-24 01:51:19 +0000
committerThierry Vignaud <tv@mandriva.org>2010-10-24 01:51:19 +0000
commit54e72c13bfedc27a9d53102d7d7949646ae94927 (patch)
tree7bc107a3a391748d4237cbc8e587a419ce87410d
parent4cff32a7716b282d82ac1c72e446003c1a02dfcc (diff)
downloadperl-MDK-Common-54e72c13bfedc27a9d53102d7d7949646ae94927.tar
perl-MDK-Common-54e72c13bfedc27a9d53102d7d7949646ae94927.tar.gz
perl-MDK-Common-54e72c13bfedc27a9d53102d7d7949646ae94927.tar.bz2
perl-MDK-Common-54e72c13bfedc27a9d53102d7d7949646ae94927.tar.xz
perl-MDK-Common-54e72c13bfedc27a9d53102d7d7949646ae94927.zip
(substInFile) typo fix
-rw-r--r--lib/MDK/Common/File.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDK/Common/File.pm b/lib/MDK/Common/File.pm
index 06bd4fe..1d5dc21 100644
--- a/lib/MDK/Common/File.pm
+++ b/lib/MDK/Common/File.pm
@@ -288,7 +288,7 @@ sub substInFile(&@) {
}
open(my $F, $file);
fsync($F);
- unlink "$file$^I"; # remove old backup now that we'have closed new file
+ unlink "$file$^I"; # remove old backup now that we have closed new file
} else {
local *F; my $old = select F; # that way eof return true
local $_ = '';