Fix misleading indentation in SSL_get_error()
authortb <tb@openbsd.org>
Tue, 2 Mar 2021 15:43:12 +0000 (15:43 +0000)
committertb <tb@openbsd.org>
Tue, 2 Mar 2021 15:43:12 +0000 (15:43 +0000)
lib/libssl/ssl_lib.c

index e0a77d7..4b215a7 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_lib.c,v 1.250 2021/02/27 14:20:50 jsing Exp $ */
+/* $OpenBSD: ssl_lib.c,v 1.251 2021/03/02 15:43:12 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -2387,7 +2387,7 @@ SSL_get_error(const SSL *s, int i)
        if (i == 0) {
                if ((s->internal->shutdown & SSL_RECEIVED_SHUTDOWN) &&
                    (S3I(s)->warn_alert == SSL_AD_CLOSE_NOTIFY))
-               return (SSL_ERROR_ZERO_RETURN);
+                       return (SSL_ERROR_ZERO_RETURN);
        }
        return (SSL_ERROR_SYSCALL);
 }