diff options
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index f700e9c..377c792 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -622,7 +622,7 @@ setipaddr(char* name, struct sockaddr * addr_ret, int af) memset(&hints, 0, sizeof(hints)); hints.ai_family = af; error = getaddrinfo(name, NULL, &hints, &res); - if (error = EAI_NONAME && af == AF_UNSPEC) { + if (error == EAI_NONAME && af == AF_UNSPEC) { /* On OSF/1 V5.1, numeric-to-addr conversion fails if no address family is given. Assume IPv4 for now.*/ hints.ai_family = AF_INET; |