You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2009/12/21 08:13:19 UTC

svn commit: r892710 - /tomcat/jk/trunk/native/common/jk_connect.c

Author: mturk
Date: Mon Dec 21 07:13:18 2009
New Revision: 892710

URL: http://svn.apache.org/viewvc?rev=892710&view=rev
Log:
Do not reset errno so we can log it

Modified:
    tomcat/jk/trunk/native/common/jk_connect.c

Modified: tomcat/jk/trunk/native/common/jk_connect.c
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_connect.c?rev=892710&r1=892709&r2=892710&view=diff
==============================================================================
--- tomcat/jk/trunk/native/common/jk_connect.c (original)
+++ tomcat/jk/trunk/native/common/jk_connect.c Mon Dec 21 07:13:18 2009
@@ -980,7 +980,6 @@
         rc = poll(&fds, 1, 0);
     } while (rc < 0 && errno == EINTR);
 
-    errno = 0;
     if (rc == 0) {
         /* If we get a timeout, then we are still connected */
         JK_TRACE_EXIT(l);



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org