This commit is contained in:
Paul Bakker 2014-10-20 13:59:19 +02:00
Родитель 9eac4f7c4e
Коммит 82788fb63b
4 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -495,7 +495,7 @@ int ecp_point_read_binary( const ecp_group *grp, ecp_point *pt,
int ret;
size_t plen;
if ( ilen < 1 )
if( ilen < 1 )
return( POLARSSL_ERR_ECP_BAD_INPUT_DATA );
if( buf[0] == 0x00 )

Просмотреть файл

@ -497,8 +497,8 @@ void net_usleep( unsigned long usec )
{
struct timeval tv;
tv.tv_sec = 0;
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || \
(defined(__APPLE__) && defined(__MACH__)))
#if !defined(_WIN32) && ( defined(__unix__) || defined(__unix) || \
( defined(__APPLE__) && defined(__MACH__) ) )
tv.tv_usec = (suseconds_t) usec;
#else
tv.tv_usec = usec;

Просмотреть файл

@ -260,7 +260,7 @@ static const int ciphersuite_preference[] =
TLS_PSK_WITH_NULL_SHA256,
TLS_PSK_WITH_NULL_SHA,
#endif
#endif /* SSL_CIPHERSUITES */
0
};

Просмотреть файл

@ -3338,7 +3338,7 @@ static int ssl_handshake_init( ssl_context *ssl )
(ssl_session *) polarssl_malloc( sizeof(ssl_session) );
}
if( ssl->handshake == NULL)
if( ssl->handshake == NULL )
{
ssl->handshake = (ssl_handshake_params *)
polarssl_malloc( sizeof(ssl_handshake_params) );