From 762d6a3e0027a624516b8e89db281201e2a34245 Mon Sep 17 00:00:00 2001 From: Todd A Ouska Date: Fri, 23 Sep 2011 10:37:26 -0700 Subject: [PATCH] fix up for pending release --- README | 3 +++ cyassl/ctaocrypt/types.h | 6 +++--- src/ssl.c | 2 -- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README b/README index a02ccbbb3..b2f2de85e 100644 --- a/README +++ b/README @@ -47,6 +47,9 @@ changes are required. Special Thanks to Brian Aker for his autoconf, install, and header patches. +The CyaSSL manual is available at: +http://www.yassl.com/documentation/CyaSSL-Manual.pdf. For build instructions +and comments about the new features please check the manual. ************CyaSSL Release 2.0.0rc2 (6/6/2011) diff --git a/cyassl/ctaocrypt/types.h b/cyassl/ctaocrypt/types.h index 4ca9d558c..9791127e9 100644 --- a/cyassl/ctaocrypt/types.h +++ b/cyassl/ctaocrypt/types.h @@ -235,9 +235,9 @@ enum { CYASSL_API word32 CheckRunTimeSettings(void); -/* If user uses RSA, DH, DSA, or ECC math lib and long types need to match - compile time and run time, CheckCtcSettings will return 1 if a match - otherwise 0 */ +/* If user uses RSA, DH, DSA, or ECC math lib directly then fast math and long + types need to match at compile time and run time, CheckCtcSettings will + return 1 if a match otherwise 0 */ #define CheckCtcSettings() (CTC_SETTINGS == CheckRunTimeSettings()) diff --git a/src/ssl.c b/src/ssl.c index ba2780e84..1796309c7 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -1022,8 +1022,6 @@ static int ProcessFile(CYASSL_CTX* ctx, const char* fname, int format, int type, int CyaSSL_CTX_load_verify_locations(CYASSL_CTX* ctx, const char* file, const char* path) { - int ret; - CYASSL_ENTER("SSL_CTX_load_verify_locations"); (void)path;