RE: cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_connect.c

2001-02-27 Thread GOMEZ Henri
> @@ -108,7 +108,7 @@ > jk_log(l, JK_LOG_DEBUG, "Into jk_open_socket\n"); > > sock = socket(AF_INET, SOCK_STREAM, 0); > -if(sock > 0) { > +if(sock > -1) { > int ret; > /* Tries to connect to JServ (continues trying >while error is EINTR) */ >

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_connect.c

2001-02-26 Thread danmil
danmil 01/02/26 20:20:41 Modified:src/native/mod_jk/common jk_connect.c Log: Fixed bug which was bombing if a socket descriptor numbered 0 was created. Submitted by: Kevin Seguin ([EMAIL PROTECTED]) Revision ChangesPath 1.3 +2 -2 jakarta-tomcat/src/nativ