diff options
author | 2020-05-23 11:30:12 +0000 | |
---|---|---|
committer | 2020-05-23 11:30:12 +0000 | |
commit | 10b56f99ea144df3192758cbf561dce06bc077f1 (patch) | |
tree | 9aa13ade958da45a1181e066eeaf7f6605ae7817 /lib/libssl/ssl_lib.c | |
parent | Implement kqueue(2) support. (diff) | |
download | wireguard-openbsd-10b56f99ea144df3192758cbf561dce06bc077f1.tar.xz wireguard-openbsd-10b56f99ea144df3192758cbf561dce06bc077f1.zip |
fix a confusingly wrapped line
Diffstat (limited to 'lib/libssl/ssl_lib.c')
-rw-r--r-- | lib/libssl/ssl_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c index 2da0a60c085..acb34e28af6 100644 --- a/lib/libssl/ssl_lib.c +++ b/lib/libssl/ssl_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_lib.c,v 1.215 2020/05/21 19:28:32 jsing Exp $ */ +/* $OpenBSD: ssl_lib.c,v 1.216 2020/05/23 11:30:12 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1945,8 +1945,8 @@ SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u) } void -SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *, - void *), void *arg) +SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, + int (*cb)(X509_STORE_CTX *, void *), void *arg) { ctx->internal->app_verify_callback = cb; ctx->internal->app_verify_arg = arg; |