mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
* http.c (connect_server): Use INADDR_NONE instead of SOCKET_ERROR.
Noted by Timo.
This commit is contained in:
parent
3fe489d1ac
commit
522fd5bc82
@ -1,3 +1,8 @@
|
||||
2005-01-13 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* http.c (connect_server): Use INADDR_NONE instead of
|
||||
SOCKET_ERROR. Noted by Timo.
|
||||
|
||||
2005-01-06 Werner Koch <wk@g10code.com>
|
||||
|
||||
* strgutil.c (set_native_charset): Assume that ASCII,
|
||||
|
@ -775,7 +775,7 @@ connect_server( const char *server, ushort port, unsigned int flags,
|
||||
init_sockets();
|
||||
/* Win32 gethostbyname doesn't handle IP addresses internally, so we
|
||||
try inet_addr first on that platform only. */
|
||||
if((inaddr=inet_addr(server))!=SOCKET_ERROR)
|
||||
if((inaddr=inet_addr(server))!=INADDR_NONE)
|
||||
{
|
||||
struct sockaddr_in addr;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user