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...@apache.org on 2001/02/02 19:15:47 UTC

cvs commit: httpd-2.0/modules/http http_core.c

trawick     01/02/02 10:15:46

  Modified:    modules/http http_core.c
  Log:
  avoid warning in non-AP_DEBUG build
  
  Revision  Changes    Path
  1.253     +2 -0      httpd-2.0/modules/http/http_core.c
  
  Index: http_core.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/http/http_core.c,v
  retrieving revision 1.252
  retrieving revision 1.253
  diff -u -r1.252 -r1.253
  --- http_core.c	2001/01/31 22:45:20	1.252
  +++ http_core.c	2001/02/02 18:15:42	1.253
  @@ -2570,7 +2570,9 @@
                                       apr_int32_t flags)
   {
       apr_status_t rv;
  +#ifdef AP_DEBUG
       apr_int32_t timeout = 0;
  +#endif
   
       AP_DEBUG_ASSERT((apr_getsocketopt(c->client_socket, APR_SO_TIMEOUT, 
                          &timeout) == APR_SUCCESS) &&