mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Remove all `enum'-typed variables from the Config structure.
Everything in there which is integral is now an actual int, which means my forthcoming revamp of the config box will be able to work with `int *' pointers without fear of doom. [originally from svn r2733]
This commit is contained in:
4
proxy.c
4
proxy.c
@ -15,8 +15,8 @@
|
||||
#include "proxy.h"
|
||||
|
||||
#define do_proxy_dns(cfg) \
|
||||
(cfg->proxy_dns == 2 || \
|
||||
(cfg->proxy_dns == 1 && cfg->proxy_type != PROXY_SOCKS))
|
||||
(cfg->proxy_dns == FORCE_ON || \
|
||||
(cfg->proxy_dns == AUTO && cfg->proxy_type != PROXY_SOCKS))
|
||||
|
||||
/*
|
||||
* Call this when proxy negotiation is complete, so that this
|
||||
|
Reference in New Issue
Block a user