diff options
author | Timo Sirainen <cras@irssi.org> | 2000-11-23 22:57:59 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-11-23 22:57:59 +0000 |
commit | 1fd6f8faf6d1be323a4cecac0ebfffab31c9d692 (patch) | |
tree | d0910781fd26b7e4a9d0883bf7888a076d025d52 /src/irc/dcc/dcc.h | |
parent | 972c06ba17399eaeb1866d6f95c117b9f83e07bd (diff) | |
download | irssi-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/dcc/dcc.h')
-rw-r--r-- | src/irc/dcc/dcc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/irc/dcc/dcc.h b/src/irc/dcc/dcc.h index cfd5b932..693c676e 100644 --- a/src/irc/dcc/dcc.h +++ b/src/irc/dcc/dcc.h @@ -49,13 +49,13 @@ typedef struct DCC_REC { int get_type; /* DCC get: what to do if file exists? */ - int fastsend:1; /* fastsending (just in case that global fastsend toggle changes while transferring..) */ - int waitforend:1; /* DCC fast send: file is sent, just wait for the replies from the other side */ - int gotalldata:1; /* DCC fast send: got all acks from the other end (needed to make sure the end of transfer works right) */ + unsigned int fastsend:1; /* fastsending (just in case that global fastsend toggle changes while transferring..) */ + unsigned int waitforend:1; /* DCC fast send: file is sent, just wait for the replies from the other side */ + unsigned int gotalldata:1; /* DCC fast send: got all acks from the other end (needed to make sure the end of transfer works right) */ - int mirc_ctcp:1; /* DCC chat: Send CTCPs without the CTCP_MESSAGE prefix */ - int connection_lost:1; /* DCC chat: other side closed connection */ - int destroyed:1; /* We're about to destroy this DCC recond */ + unsigned int mirc_ctcp:1; /* DCC chat: Send CTCPs without the CTCP_MESSAGE prefix */ + unsigned int connection_lost:1; /* DCC chat: other side closed connection */ + unsigned int destroyed:1; /* We're about to destroy this DCC recond */ /* read/write counter buffer */ char count_buf[4]; |