commit 9a873590ffbc4d03208bb89262105c89e52ca295
parent 0adc7d4b9034c15558916522e31aa2750f729592
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Thu, 19 May 2016 21:46:16 +0200
SBO::Lib: reword race condition message in open_fh
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
@@ -143,7 +143,7 @@ sub open_fh {
}
my ($file, $op) = @_;
my $fh;
- _race::cond 'possibly $file has been deleted between -f test and now';
+ _race::cond '$file could be deleted between -f test and open';
unless (open $fh, $op, $file) {
my $warn = "Unable to open $file.\n";
my $exit = _ERR_OPENFH;