diff options
Diffstat (limited to 'perl-install/fs/loopback.pm')
-rw-r--r-- | perl-install/fs/loopback.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/loopback.pm b/perl-install/fs/loopback.pm index 572c79f67..8d0c729ec 100644 --- a/perl-install/fs/loopback.pm +++ b/perl-install/fs/loopback.pm @@ -1,4 +1,4 @@ -package fs::loopback; # $Id$ +package fs::loopback; use diagnostics; use strict; @@ -86,7 +86,7 @@ sub getFree { } #- returns the size of the loopback file if it already exists -#- returns -1 is the loopback file can not be used +#- returns -1 is the loopback file cannot be used sub verifFile { my ($dir, $file, $part) = @_; -e "$dir$file" and return -s "$dir$file"; |