diff options
author | TingPing <tingping@tingping.se> | 2014-12-28 13:38:47 -0500 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-12-28 22:29:06 -0500 |
commit | 1b2bee37e43baca9b0ec58061561fdb60c31cef8 (patch) | |
tree | 7caf7da8be07701c2c1147c14a75149e5bb48575 /src/common/hexchat.c | |
parent | 9cb73f839ffddb1479f0ee1c8a89acebafd31045 (diff) |
Remove option to disable ipv6
It has been default for a while, is the only tested option, and will only get more common.
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 37e46ce8..7db7e6ca 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -760,15 +760,11 @@ xchat_init (void) #ifdef WIN32 WSADATA wsadata; -#ifdef USE_IPV6 if (WSAStartup(0x0202, &wsadata) != 0) { MessageBox (NULL, "Cannot find winsock 2.2+", "Error", MB_OK); exit (0); } -#else - WSAStartup(0x0101, &wsadata); -#endif /* !USE_IPV6 */ #endif /* !WIN32 */ #ifdef USE_SIGACTION |