diff options
author | Geoff Thorpe <geoff@openssl.org> | 2008-08-05 19:48:02 +0200 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2008-08-05 19:48:02 +0200 |
commit | 99649b599083c484a6eb57893976fabeb48952e8 (patch) | |
tree | 74090bfe9107fe8ef035e09af214aef59811ae89 /ssl | |
parent | Correctly handle errors in CMS I/O code. (diff) | |
download | openssl-99649b599083c484a6eb57893976fabeb48952e8.tar.xz openssl-99649b599083c484a6eb57893976fabeb48952e8.zip |
Fix signed/unsigned warning.
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/s3_both.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_both.c b/ssl/s3_both.c index 06e761b4b2..361ecf1f9f 100644 --- a/ssl/s3_both.c +++ b/ssl/s3_both.c @@ -620,7 +620,7 @@ freelist_extract(SSL_CTX *ctx, int for_read, int sz) CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX); list = for_read ? ctx->rbuf_freelist : ctx->wbuf_freelist; - if (list != NULL && sz == list->chunklen) + if (list != NULL && sz == (int)list->chunklen) ent = list->head; if (ent != NULL) { |