apps/speed.c: fix typo in last commit.
[openssl.git] / apps / s_socket.c
index c08544a13cbb5413f6eefd8718f3def000c38f5b..380efdb1b9762d28e8bc9f32fe0e4d1c76470435 100644 (file)
@@ -238,11 +238,10 @@ int init_client(int *sock, char *host, int port, int type)
        {
        unsigned char ip[4];
 
+       memset(ip, '\0', sizeof ip);
        if (!host_ip(host,&(ip[0])))
-               {
-               return(0);
-               }
-       return(init_client_ip(sock,ip,port,type));
+               return 0;
+       return init_client_ip(sock,ip,port,type);
        }
 
 static int init_client_ip(int *sock, unsigned char ip[4], int port, int type)