summaryrefslogtreecommitdiff
path: root/src/irc/core/irc-servers.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-11-23 22:57:59 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-11-23 22:57:59 +0000
commit1fd6f8faf6d1be323a4cecac0ebfffab31c9d692 (patch)
treed0910781fd26b7e4a9d0883bf7888a076d025d52 /src/irc/core/irc-servers.h
parent972c06ba17399eaeb1866d6f95c117b9f83e07bd (diff)
downloadirssi-1fd6f8faf6d1be323a4cecac0ebfffab31c9d692.zip
more changes from int xx:1 to unsigned int xx:1
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@861 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core/irc-servers.h')
-rw-r--r--src/irc/core/irc-servers.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/irc/core/irc-servers.h b/src/irc/core/irc-servers.h
index c35fb0c8..ab6b63e9 100644
--- a/src/irc/core/irc-servers.h
+++ b/src/irc/core/irc-servers.h
@@ -38,15 +38,15 @@ typedef struct {
char *usermode; /* The whole mode string .. */
char *userhost; /* /USERHOST <nick> - set when joined to first channel */
- int nick_changing:1; /* We've sent nick change command to server */
- int whois_coming:1; /* Mostly just to display away message right.. */
- int whois_found:1; /* Did WHOIS return any entries? */
- int whowas_found:1; /* Did WHOWAS return any entries? */
-
- int emode_known:1; /* Server understands ban exceptions and invite lists */
- int no_multi_mode:1; /* Server doesn't understand MODE #chan1,#chan2,... */
- int no_multi_who:1; /* Server doesn't understand WHO #chan1,#chan2,... */
- int one_endofwho:1; /* /WHO #a,#b,.. replies only with one End of WHO message */
+ unsigned int nick_changing:1; /* We've sent nick change command to server */
+ unsigned int whois_coming:1; /* Mostly just to display away message right.. */
+ unsigned int whois_found:1; /* Did WHOIS return any entries? */
+ unsigned int whowas_found:1; /* Did WHOWAS return any entries? */
+
+ unsigned int emode_known:1; /* Server understands ban exceptions and invite lists */
+ unsigned int no_multi_mode:1; /* Server doesn't understand MODE #chan1,#chan2,... */
+ unsigned int no_multi_who:1; /* Server doesn't understand WHO #chan1,#chan2,... */
+ unsigned int one_endofwho:1; /* /WHO #a,#b,.. replies only with one End of WHO message */
int max_kicks_in_cmd; /* max. number of people to kick with one /KICK command */
int max_modes_in_cmd; /* max. number of mode changes in one /MODE command */