fix typos

This commit is contained in:
toddouska
2013-03-12 15:56:58 -07:00
parent a868451d72
commit dbe83c7405
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ extern "C" {
#ifdef MP_8BIT #ifdef MP_8BIT
typedef unsigned char mp_digit; typedef unsigned char mp_digit;
typedef unsigned short mp_word; typedef unsigned short mp_word;
#elif (defined(MP_16BIT) || defined(NO_64BIT)) #elif defined(MP_16BIT) || defined(NO_64BIT)
typedef unsigned short mp_digit; typedef unsigned short mp_digit;
typedef unsigned int mp_word; typedef unsigned int mp_word;
#elif defined(MP_64BIT) #elif defined(MP_64BIT)

View File

@@ -44,7 +44,7 @@ CYASSL_CTX* cipherSuiteCtx = NULL;
#ifdef NO_OLD_TLS #ifdef NO_OLD_TLS
/* if the protcol versoin is less than tls 1.2 return 1, else 0 */ /* if the protocol version is less than tls 1.2 return 1, else 0 */
static int IsOldTlsVersion(const char* line) static int IsOldTlsVersion(const char* line)
{ {
const char* find = "-v "; const char* find = "-v ";