You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/05/01 02:38:23 UTC

cvs commit: apache-2.0/src/lib/apr/network_io/unix poll.c

trawick     00/04/30 17:38:23

  Modified:    src/lib/apr/network_io/unix poll.c
  Log:
  fix typo in Ryan's recent change (ap_pcalloc, not ap_cpalloc)
  
  Revision  Changes    Path
  1.31      +1 -1      apache-2.0/src/lib/apr/network_io/unix/poll.c
  
  Index: poll.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/network_io/unix/poll.c,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- poll.c	2000/04/30 21:17:57	1.30
  +++ poll.c	2000/05/01 00:38:23	1.31
  @@ -229,7 +229,7 @@
       }
       (*new)->cntxt = cont;
       (*new)->read = (fd_set *)ap_pcalloc(cont, sizeof(fd_set));
  -    (*new)->write = (fd_set *)ap_cpalloc(cont, sizeof(fd_set));
  +    (*new)->write = (fd_set *)ap_pcalloc(cont, sizeof(fd_set));
       (*new)->except = (fd_set *)ap_pcalloc(cont, sizeof(fd_set));
       FD_ZERO((*new)->read);
       FD_ZERO((*new)->write);