mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 07:02:12 +02:00
several fixes to make irssi compile without warnings with MIPSpro
also fixed ctcp_queue_clean() - it might have crashed sometimes.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@859 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
8fb2249f07
commit
8ce36c05ea
30 changed files with 80 additions and 72 deletions
|
|
@ -10,8 +10,8 @@ time_t real_connect_time; /* time when server replied that we really are connect
|
|||
char *tag; /* tag name for addressing server */
|
||||
char *nick; /* current nick */
|
||||
|
||||
int connected:1; /* connected to server */
|
||||
int connection_lost:1; /* Connection lost unintentionally */
|
||||
unsigned int connected:1; /* connected to server */
|
||||
unsigned int connection_lost:1; /* Connection lost unintentionally */
|
||||
|
||||
void *handle; /* NET_SENDBUF_REC socket */
|
||||
int readtag; /* input tag */
|
||||
|
|
@ -33,9 +33,9 @@ GHashTable *module_data;
|
|||
char *version; /* server version */
|
||||
char *away_reason;
|
||||
char *last_invite; /* channel where you were last invited */
|
||||
int server_operator:1;
|
||||
int usermode_away:1;
|
||||
int banned:1; /* not allowed to connect to this server */
|
||||
unsigned int server_operator:1;
|
||||
unsigned int usermode_away:1;
|
||||
unsigned int banned:1; /* not allowed to connect to this server */
|
||||
|
||||
time_t lag_sent; /* 0 or time when last lag query was sent to server */
|
||||
time_t lag_last_check; /* last time we checked lag */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue