summaryrefslogtreecommitdiffstats
path: root/ssl/s3_lib.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-05-22 12:33:29 +0100
committerMatt Caswell <matt@openssl.org>2017-05-22 14:00:34 +0100
commita89325e41f52b4a1f58202f6d8f5597105fc9f5a (patch)
treed4aaebb59dc04a2be41efc885b25abfb75284ef0 /ssl/s3_lib.c
parent380a522f689252e7f19e0c44ea49461ec7bd040f (diff)
Fix some style issues in returns
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3496)
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 289dc51cb2..5a8f9f46ac 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -2915,9 +2915,9 @@ int ssl3_new(SSL *s)
goto err;
#endif
s->method->ssl_clear(s);
- return (1);
+ return 1;
err:
- return (0);
+ return 0;
}
void ssl3_free(SSL *s)