diff options
author | Ahmad Samir <ahmad@mageia.org> | 2011-04-02 19:39:51 +0000 |
---|---|---|
committer | Ahmad Samir <ahmad@mageia.org> | 2011-04-02 19:39:51 +0000 |
commit | b669b354a83790133e9d1be5c7796594bf9cfe22 (patch) | |
tree | aa0ec2ee89a4aee11369bb5ebb3f3997526438b3 /perl-install/common.pm | |
parent | 14d4269e46245ec89e8106428f558973b127d3b2 (diff) | |
download | drakx-backup-do-not-use-b669b354a83790133e9d1be5c7796594bf9cfe22.tar drakx-backup-do-not-use-b669b354a83790133e9d1be5c7796594bf9cfe22.tar.gz drakx-backup-do-not-use-b669b354a83790133e9d1be5c7796594bf9cfe22.tar.bz2 drakx-backup-do-not-use-b669b354a83790133e9d1be5c7796594bf9cfe22.tar.xz drakx-backup-do-not-use-b669b354a83790133e9d1be5c7796594bf9cfe22.zip |
- use 'cannot' instead of 'can not'
- use 'LDAP' instead of 'Ldap'
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 2806e1103..f88f2767c 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -109,7 +109,7 @@ sub setVirtual { sub nonblock { my ($F) = @_; - fcntl($F, c::F_SETFL(), fcntl($F, c::F_GETFL(), 0) | c::O_NONBLOCK()) or die "can not fcntl F_SETFL: $!"; + fcntl($F, c::F_SETFL(), fcntl($F, c::F_GETFL(), 0) | c::O_NONBLOCK()) or die "cannot fcntl F_SETFL: $!"; } #- return a size in sector @@ -267,7 +267,7 @@ sub open_file { sub secured_file { my ($f) = @_; - c::is_secure_file($f) or die "can not ensure a safe $f"; + c::is_secure_file($f) or die "cannot ensure a safe $f"; $f; } |