summaryrefslogtreecommitdiff
path: root/usr.bin/openssl
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2020-11-03 18:42:53 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2020-11-03 18:42:53 +0000
commit056a90b135671d8061f837c71796754d06270cee (patch)
tree135b621354a706a1f7548e724e5296dc8f7ebbc2 /usr.bin/openssl
parentf6d982a6d0df28b0d88aa80b65fa4091e35b472d (diff)
* ptr -> *ptr
Diffstat (limited to 'usr.bin/openssl')
-rw-r--r--usr.bin/openssl/verify.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/openssl/verify.c b/usr.bin/openssl/verify.c
index 937f350a3ab..6d915009b06 100644
--- a/usr.bin/openssl/verify.c
+++ b/usr.bin/openssl/verify.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: verify.c,v 1.10 2020/11/03 18:39:18 tb Exp $ */
+/* $OpenBSD: verify.c,v 1.11 2020/11/03 18:42:52 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -68,9 +68,9 @@
#include <openssl/x509.h>
#include <openssl/x509v3.h>
-static int cb(int ok, X509_STORE_CTX * ctx);
-static int check(X509_STORE * ctx, char *file, STACK_OF(X509) * uchain,
- STACK_OF(X509) * tchain, STACK_OF(X509_CRL) * crls);
+static int cb(int ok, X509_STORE_CTX *ctx);
+static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain,
+ STACK_OF(X509) *tchain, STACK_OF(X509_CRL) *crls);
static int vflags = 0;
static struct {
@@ -410,7 +410,7 @@ check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain,
}
static int
-cb(int ok, X509_STORE_CTX * ctx)
+cb(int ok, X509_STORE_CTX *ctx)
{
int cert_error = X509_STORE_CTX_get_error(ctx);
X509 *current_cert = X509_STORE_CTX_get_current_cert(ctx);