diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-05-20 14:39:24 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-05-20 14:39:24 +0200 |
commit | 79221c403b0be99451b2aebecc2c8dd2e8e4b8d9 (patch) | |
tree | 538c71e880a7d0ecb2b12b1df9612c245e8150a4 /src/common/cfgfiles.c | |
parent | 0ab11cc09a1021f65061510a57c1da77c3c1bfd4 (diff) |
Temporary workaround for reconnect crashes on win32
Yes, we really need to fix this ASAP
Diffstat (limited to 'src/common/cfgfiles.c')
-rw-r--r-- | src/common/cfgfiles.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index e754e17d..c3cad2aa 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -536,7 +536,9 @@ const struct prefs vars[] = {"irc_whois_front", P_OFFINT (hex_irc_whois_front), TYPE_BOOL}, {"net_auto_reconnect", P_OFFINT (hex_net_auto_reconnect), TYPE_BOOL}, +#ifndef WIN32 /* FIXME fix reconnect crashes and remove this ifdef! */ {"net_auto_reconnectonfail", P_OFFINT (hex_net_auto_reconnectonfail), TYPE_BOOL}, +#endif {"net_bind_host", P_OFFSET (hex_net_bind_host), TYPE_STR}, {"net_ping_timeout", P_OFFINT (hex_net_ping_timeout), TYPE_INT}, {"net_proxy_auth", P_OFFINT (hex_net_proxy_auth), TYPE_BOOL}, |