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;