summaryrefslogtreecommitdiff
path: root/src/lib/libssl
diff options
context:
space:
mode:
authortb <>2025-05-10 05:49:21 +0000
committertb <>2025-05-10 05:49:21 +0000
commit2321faaac494ba6625d1e982ca3dff18e17738ab (patch)
tree0c45493d66084bc50367583f3997c1d98ed4e8a4 /src/lib/libssl
parent594a5f8b6de10bc8076b0b5671f5937ab9e3dae3 (diff)
downloadopenbsd-2321faaac494ba6625d1e982ca3dff18e17738ab.tar.gz
openbsd-2321faaac494ba6625d1e982ca3dff18e17738ab.tar.bz2
openbsd-2321faaac494ba6625d1e982ca3dff18e17738ab.zip
SSL_error_internal: remove a superfluous pair of parens
Diffstat (limited to 'src/lib/libssl')
-rw-r--r--src/lib/libssl/ssl_err.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_err.c b/src/lib/libssl/ssl_err.c
index 4214edbcc9..90822490e2 100644
--- a/src/lib/libssl/ssl_err.c
+++ b/src/lib/libssl/ssl_err.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_err.c,v 1.54 2025/05/10 05:31:21 tb Exp $ */ 1/* $OpenBSD: ssl_err.c,v 1.55 2025/05/10 05:49:21 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -671,6 +671,5 @@ SSL_state_func_code(int state) {
671void 671void
672SSL_error_internal(const SSL *s, int r, const char *f, int l) 672SSL_error_internal(const SSL *s, int r, const char *f, int l)
673{ 673{
674 ERR_PUT_error(ERR_LIB_SSL, 674 ERR_PUT_error(ERR_LIB_SSL, SSL_state_func_code(s->s3->hs.state), r, f, l);
675 (SSL_state_func_code(s->s3->hs.state)), r, f, l);
676} 675}