From efbe329768d5b9b0dd94c213c62379435f233dde Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Mon, 17 Sep 2012 17:51:40 +0200 Subject: [PATCH] Indention. --- src/SSLSocket.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SSLSocket.m b/src/SSLSocket.m index 181ceaf..c9820a2 100644 --- a/src/SSLSocket.m +++ b/src/SSLSocket.m @@ -300,7 +300,7 @@ ssl_locking_callback(int mode, int n, const char *file, int line) e = [OFWriteFailedException exceptionWithClass: [self class] stream: self - requestedLength: length]; + requestedLength: length]; #ifndef _WIN32 e->errNo = ENOTCONN; @@ -394,12 +394,12 @@ ssl_locking_callback(int mode, int n, const char *file, int line) 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