You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/07/23 19:58:08 UTC

cvs commit: apr/network_io/unix poll.c

trawick     01/07/23 10:58:08

  Modified:    network_io/unix poll.c
  Log:
  copy over the pipe timeout when creating a socket from
  a pipe
  
  Revision  Changes    Path
  1.48      +1 -0      apr/network_io/unix/poll.c
  
  Index: poll.c
  ===================================================================
  RCS file: /home/cvs/apr/network_io/unix/poll.c,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- poll.c	2001/06/07 10:31:24	1.47
  +++ poll.c	2001/07/23 17:58:08	1.48
  @@ -404,6 +404,7 @@
       (*newsock) = apr_pcalloc(file->cntxt, sizeof(**newsock));
       (*newsock)->socketdes = file->filedes;
       (*newsock)->cntxt = file->cntxt;
  +    (*newsock)->timeout = file->timeout;
       return APR_SUCCESS;
   }
   #endif