You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/05/12 14:01:11 UTC

cvs commit: apache-apr/apr/locks/unix locks.h

rbb         99/05/12 05:01:11

  Modified:    apr/locks/unix locks.h
  Log:
  Stupid typo, but it would have kept the test programs from working.
  Submitted by:  David Reid
  
  Revision  Changes    Path
  1.2       +1 -1      apache-apr/apr/locks/unix/locks.h
  
  Index: locks.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/apr/locks/unix/locks.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- locks.h	1999/05/10 17:57:54	1.1
  +++ locks.h	1999/05/12 12:01:10	1.2
  @@ -89,7 +89,7 @@
       struct flock lock_it;
       struct flock unlock_it;
   #elif defined (USE_PTHREAD_MUTEX)
  -    pthread_mutex_t *intraproc;
  +    pthread_mutex_t *interproc;
   #elif defined (USE_FLOCK_SERIALIZE)
       int interproc;
   #else