From: Daniel Stenberg Date: Tue, 13 Sep 2011 16:46:09 +0000 (+0200) Subject: codestyle: minor whitespace fix X-Git-Tag: curl-7_22_0~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73b18a9d249042d464880e24a79a8c4acf103aed;p=curl codestyle: minor whitespace fix --- 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; }