From c48c826305267737b31caf607cf5dd085079e3d6 Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 3 Nov 2020 18:42:52 +0000 Subject: * ptr -> *ptr --- src/usr.bin/openssl/verify.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/usr.bin/openssl/verify.c b/src/usr.bin/openssl/verify.c index 937f350a3a..6d915009b0 100644 --- a/src/usr.bin/openssl/verify.c +++ b/src/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 #include -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); -- cgit v1.2.3-55-g6feb