In rfc2553_connect_to(), remove a useless check for NULL
authorFabian Keil <fk@fabiankeil.de>
Sun, 27 Mar 2011 13:53:49 +0000 (13:53 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sun, 27 Mar 2011 13:53:49 +0000 (13:53 +0000)
jbsockets.c

index ef851aa..81befe3 100644 (file)
@@ -1,4 +1,4 @@
-const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.82 2011/03/27 13:53:04 fabiankeil Exp $";
+const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.83 2011/03/27 13:53:25 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jbsockets.c,v $
@@ -238,12 +238,11 @@ static jb_socket rfc2553_connect_to(const char *host, int portnum, struct client
       }
       retval = getnameinfo(rp->ai_addr, rp->ai_addrlen,
          csp->http->host_ip_addr_str, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
-      if (!csp->http->host_ip_addr_str || retval)
+      if (retval)
       {
          log_error(LOG_LEVEL_ERROR,
             "Can not save csp->http->host_ip_addr_str: %s",
-            (csp->http->host_ip_addr_str) ?
-            gai_strerror(retval) : "Insufficient memory");
+            gai_strerror(retval));
          freez(csp->http->host_ip_addr_str);
          continue;
       }