From 1fd6f8faf6d1be323a4cecac0ebfffab31c9d692 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 23 Nov 2000 22:57:59 +0000 Subject: 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 --- src/irc/core/irc-servers.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/irc/core/irc-servers.h') 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 - 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 */ -- cgit v1.2.3