diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-10-24 01:51:19 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-10-24 01:51:19 +0000 |
commit | 54e72c13bfedc27a9d53102d7d7949646ae94927 (patch) | |
tree | 7bc107a3a391748d4237cbc8e587a419ce87410d | |
parent | 4cff32a7716b282d82ac1c72e446003c1a02dfcc (diff) | |
download | perl-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.pm | 2 |
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 $_ = ''; |