You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2003/04/03 18:05:54 UTC

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_apr_socket.c

jfclere     2003/04/03 08:05:53

  Modified:    jk/native2/common jk_channel_apr_socket.c
  Log:
  Fix syntax error.
  Submitted by Jeff Trawick trawick at attglobal.net
  
  Revision  Changes    Path
  1.30      +24 -8     jakarta-tomcat-connectors/jk/native2/common/jk_channel_apr_socket.c
  
  Index: jk_channel_apr_socket.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/common/jk_channel_apr_socket.c,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- jk_channel_apr_socket.c	4 Feb 2003 07:39:59 -0000	1.29
  +++ jk_channel_apr_socket.c	3 Apr 2003 16:05:53 -0000	1.30
  @@ -226,9 +226,16 @@
           if ((ret = apr_socket_create(&sock, remote_sa->family, SOCK_STREAM,
                                        (apr_pool_t *)env->globalPool->_private))
                                       != APR_SUCCESS) {
  -            env->l->jkLog(env, env->l, remote_sa->next ? JK_LOG_DEBUG : JK_LOG_ERROR,
  -                         "channelApr.open(): error %d creating socket %d %s\n",
  -                          ret, socketInfo->host);
  +            if (remote_sa->next) {
  +                env->l->jkLog(env, env->l, JK_LOG_DEBUG,
  +                              "channelApr.open(): error %d creating socket %d %s\n",
  +                              ret, socketInfo->host);
  +            }
  +            else {
  +                env->l->jkLog(env, env->l, JK_LOG_ERROR,
  +                              "channelApr.open(): error %d creating socket %d %s\n",
  +                              ret, socketInfo->host);
  +            }
               remote_sa = remote_sa->next;
               continue;
           }
  @@ -255,11 +262,20 @@
           /* if an error occurred, loop round and try again */
           if (ret != APR_SUCCESS) {
               apr_socket_close(sock);
  -            env->l->jkLog(env, env->l, remote_sa->next ? JK_LOG_DEBUG : JK_LOG_ERROR,
  -                         "channelApr.open() attempt to connect to %pI (%s) failed %d\n",
  -                         remote_sa,
  -                         socketInfo->host,
  -                         ret);
  +            if (remote_sa->next) {
  +                env->l->jkLog(env, env->l, JK_LOG_DEBUG,
  +                              "channelApr.open() attempt to connect to %pI (%s) failed %d\n",
  +                              remote_sa,
  +                              socketInfo->host,
  +                              ret);
  +            }
  +            else {
  +                env->l->jkLog(env, env->l, JK_LOG_ERROR,
  +                              "channelApr.open() attempt to connect to %pI (%s) failed %d\n",
  +                              remote_sa,
  +                              socketInfo->host,
  +                              ret);
  +            }
               remote_sa = remote_sa->next;
               continue;
           }
  
  
  

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