don't call gethostbyname if OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL is set

This commit is contained in:
Dr. Stephen Henson 2012-11-19 12:36:04 +00:00
parent 9ba297e49f
commit 7831969634

View File

@ -298,7 +298,11 @@ int do_server(int port, int type, int *ret, int (*cb)(char *hostname, int s, uns
{
if (type==SOCK_STREAM)
{
#ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
if (do_accept(accept_socket,&sock,NULL) == 0)
#else
if (do_accept(accept_socket,&sock,&name) == 0)
#endif
{
SHUTDOWN(accept_socket);
return(0);