diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-09-13 18:46:09 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-09-13 18:46:09 +0200 |
commit | 73b18a9d249042d464880e24a79a8c4acf103aed (patch) | |
tree | ac307467ce67a6bfb6f2847bff2308023de3a428 | |
parent | 1bac153ea31cdc20f9171bed8142d2fe019ed6df (diff) |
codestyle: minor whitespace fix
-rw-r--r-- | lib/polarssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/polarssl.c b/lib/polarssl.c index 006163e76..09446f995 100644 --- a/lib/polarssl.c +++ b/lib/polarssl.c @@ -235,8 +235,8 @@ Curl_polarssl_connect(struct connectdata *conn, for(;;) { if(!(ret = ssl_handshake(&conn->ssl[sockindex].ssl))) break; - else if( ret != POLARSSL_ERR_NET_WANT_READ && - ret != POLARSSL_ERR_NET_WANT_WRITE ) { + else if(ret != POLARSSL_ERR_NET_WANT_READ && + ret != POLARSSL_ERR_NET_WANT_WRITE) { failf(data, "ssl_handshake returned -0x%04X", -ret); return CURLE_SSL_CONNECT_ERROR; } |