diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2010-01-06 15:01:45 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2010-01-06 15:01:45 +0100 |
commit | 82a107eaa8448203fcdbf0f8a55d173dc9c1f824 (patch) | |
tree | 20929ab211a15198e292c142cf6620e56a0985e8 /ssl | |
parent | ENGINE_load_capi() now exists on all platforms (but no op on non-WIN32) (diff) | |
download | openssl-82a107eaa8448203fcdbf0f8a55d173dc9c1f824.tar.xz openssl-82a107eaa8448203fcdbf0f8a55d173dc9c1f824.zip |
compress_meth should be unsigned
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/ssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -486,7 +486,7 @@ typedef struct ssl_session_st long timeout; long time; - int compress_meth; /* Need to lookup the method */ + unsigned int compress_meth; /* Need to lookup the method */ const SSL_CIPHER *cipher; unsigned long cipher_id; /* when ASN.1 loaded, this |