minor KNF improvement, changing only whitespace, no code change:
authorschwarze <schwarze@openbsd.org>
Fri, 19 Nov 2021 16:35:10 +0000 (16:35 +0000)
committerschwarze <schwarze@openbsd.org>
Fri, 19 Nov 2021 16:35:10 +0000 (16:35 +0000)
say: return_type *function_name(args);
not: return_type* function_name (args);
OK tb@

lib/libcrypto/x509/x509_vfy.h

index 133ffda..34fb913 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509_vfy.h,v 1.46 2021/11/01 20:53:08 tb Exp $ */
+/* $OpenBSD: x509_vfy.h,v 1.47 2021/11/19 16:35:10 schwarze Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -281,8 +281,8 @@ X509_CRL *X509_OBJECT_get0_X509_CRL(X509_OBJECT *xo);
 X509_STORE *X509_STORE_new(void);
 void X509_STORE_free(X509_STORE *v);
 int X509_STORE_up_ref(X509_STORE *x);
-STACK_OF(X509)X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm);
-STACK_OF(X509_CRL)X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm);
+STACK_OF(X509) *X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm);
+STACK_OF(X509_CRL) *X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm);
 STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(X509_STORE *xs);
 void *X509_STORE_get_ex_data(X509_STORE *xs, int idx);
 int X509_STORE_set_ex_data(X509_STORE *xs, int idx, void *data);
@@ -354,7 +354,7 @@ int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, X509_LOOKUP_TYPE type,
     const char *str, int len, X509_OBJECT *ret);
 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx);
 
-int    X509_STORE_load_locations (X509_STORE *ctx,
+int    X509_STORE_load_locations(X509_STORE *ctx,
                const char *file, const char *dir);
 int    X509_STORE_load_mem(X509_STORE *ctx, void *buf, int len);
 int    X509_STORE_set_default_paths(X509_STORE *ctx);