diff options
author | Roger Dingledine <arma@torproject.org> | 2008-02-24 23:39:53 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-02-24 23:39:53 +0000 |
commit | e7f3d6f76cd36f2c337d18b04f1dd2e5bae58d34 (patch) | |
tree | 043bb6219507d4c88724ba40673007ad9b16e2b6 /src/common | |
parent | 3452486ac65af88cf524cb93041a2a173335da27 (diff) | |
download | tor-e7f3d6f76cd36f2c337d18b04f1dd2e5bae58d34.tar.gz tor-e7f3d6f76cd36f2c337d18b04f1dd2e5bae58d34.zip |
fix most of pnx's warnings on irix64
svn:r13706
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index c57daebf78..21108820d6 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -85,8 +85,8 @@ struct tor_tls_t { * of the connection protocol (client sends * different cipher list, server sends only * one certificate). */ - int got_renegotiate:1; /**< True iff we should call negotiated_callback - * when we're done reading. */ + /** True iff we should call negotiated_callback when we're done reading. */ + unsigned int got_renegotiate:1; size_t wantwrite_n; /**< 0 normally, >0 if we returned wantwrite last * time. */ /** Last values retrieved from BIO_number_read()/write(); see |