Change 20611 by [EMAIL PROTECTED] on 2003/08/11 08:33:13
Typo fix from Boris Zentner.
Affected files ...
... //depot/perl/pod/perlfaq5.pod#54 edit
Differences ...
==== //depot/perl/pod/perlfaq5.pod#54 (text) ====
Index: perl/pod/perlfaq5.pod
--- perl/pod/perlfaq5.pod#53~18604~ Thu Jan 30 12:52:05 2003
+++ perl/pod/perlfaq5.pod Mon Aug 11 01:33:13 2003
@@ -549,7 +549,7 @@
atomic test-and-set instruction. In theory, this "ought" to work:
sysopen(FH, "file.lock", O_WRONLY|O_EXCL|O_CREAT)
- or die "can't open file.lock: $!":
+ or die "can't open file.lock: $!";
except that lamentably, file creation (and deletion) is not atomic
over NFS, so this won't work (at least, not every time) over the net.
End of Patch.