diff options
Diffstat (limited to 'src/irc/proxy/module.h')
-rw-r--r-- | src/irc/proxy/module.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/proxy/module.h b/src/irc/proxy/module.h index ddf2f8fa..1defd0ce 100644 --- a/src/irc/proxy/module.h +++ b/src/irc/proxy/module.h @@ -24,8 +24,8 @@ typedef struct { char *proxy_address; LISTEN_REC *listen; IRC_SERVER_REC *server; - int pass_sent:1; - int connected:1; + unsigned int pass_sent:1; + unsigned int connected:1; } CLIENT_REC; extern GSList *proxy_listens; |