Index: src/SSLSocket.m ================================================================== --- src/SSLSocket.m +++ src/SSLSocket.m @@ -298,11 +298,11 @@ if (atEndOfStream) { OFWriteFailedException *e; e = [OFWriteFailedException exceptionWithClass: [self class] stream: self - requestedLength: length]; + requestedLength: length]; #ifndef _WIN32 e->errNo = ENOTCONN; #else e->errNo = WSAENOTCONN; @@ -392,14 +392,14 @@ if (SSL_get_peer_certificate(ssl) != NULL) { if ((ret = SSL_get_verify_result(ssl)) != X509_V_OK) { const char *tmp = X509_verify_cert_error_string(ret); OFString *reason = [OFString stringWithUTF8String: tmp]; @throw [SSLInvalidCertificateException - exceptionWithClass: [self class] - reason: reason]; + exceptionWithClass: [self class] + reason: reason]; } } else @throw [SSLInvalidCertificateException - exceptionWithClass: [self class] - reason: @"No certificate"]; + exceptionWithClass: [self class] + reason: @"No certificate"]; } @end