cvs commit: perlfaq perlfaq5.pod

[email protected] (Robert Spier) 12 Aug 2003 02:44:46 -0000
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
cvsuser     03/08/11 19:44:46

  Modified:    .        perlfaq5.pod
  Log:
  Change 20611 by jhi@kosh on 2003/08/11 08:33:13
  
  	Typo fix from Boris Zentner.
  
  Revision  Changes    Path
  1.29      +2 -2      perlfaq/perlfaq5.pod
  
  Index: perlfaq5.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq5.pod,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -w -r1.28 -r1.29
  --- perlfaq5.pod	26 Jan 2003 17:45:46 -0000	1.28
  +++ perlfaq5.pod	12 Aug 2003 02:44:46 -0000	1.29
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26 17:45:46 $)
  +perlfaq5 - Files and Formats ($Revision: 1.29 $, $Date: 2003/08/12 02:44:46 $)
   
   =head1 DESCRIPTION
   
  @@ -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.