mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
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
This commit is contained in:
parent
972c06ba17
commit
1fd6f8faf6
10 changed files with 40 additions and 40 deletions
|
|
@ -9,13 +9,13 @@ typedef struct {
|
|||
char *user, *host, *realname, *awaymsg;
|
||||
int idle_time;
|
||||
|
||||
int host_ok:1; /* host matches the one in notifylist = this is the right person*/
|
||||
int away_ok:1; /* not away, or we don't care about it */
|
||||
int idle_ok:1; /* idle time is low enough, or we don't care about it */
|
||||
unsigned int host_ok:1; /* host matches the one in notifylist = this is the right person*/
|
||||
unsigned int away_ok:1; /* not away, or we don't care about it */
|
||||
unsigned int idle_ok:1; /* idle time is low enough, or we don't care about it */
|
||||
|
||||
int away:1; /* nick is away */
|
||||
int join_announced:1; /* join to IRC has been announced */
|
||||
int idle_changed:1; /* idle time is lower than in last check */
|
||||
unsigned int away:1; /* nick is away */
|
||||
unsigned int join_announced:1; /* join to IRC has been announced */
|
||||
unsigned int idle_changed:1; /* idle time is lower than in last check */
|
||||
|
||||
time_t last_whois;
|
||||
} NOTIFY_NICK_REC;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ typedef struct {
|
|||
char **ircnets; /* if non-NULL, check only from these irc networks */
|
||||
|
||||
/* notify when AWAY status changes (uses /USERHOST) */
|
||||
int away_check:1;
|
||||
unsigned int away_check:1;
|
||||
/* notify when idle time is reset and it was bigger than this
|
||||
(uses /WHOIS and PRIVMSG events) */
|
||||
int idle_check_time;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue