diff options
author | schwarze <> | 2021-11-19 16:35:10 +0000 |
---|---|---|
committer | schwarze <> | 2021-11-19 16:35:10 +0000 |
commit | d621a20aea37f0a445975601bf8b27ff6a11e396 (patch) | |
tree | 34931b12395a2d28d7da24e290939b5bcff86aec /src/lib | |
parent | bf0a7754da3b2b67699a5244a5a180f9cf5ee394 (diff) | |
download | openbsd-d621a20aea37f0a445975601bf8b27ff6a11e396.tar.gz openbsd-d621a20aea37f0a445975601bf8b27ff6a11e396.tar.bz2 openbsd-d621a20aea37f0a445975601bf8b27ff6a11e396.zip |
minor KNF improvement, changing only whitespace, no code change:
say: return_type *function_name(args);
not: return_type* function_name (args);
OK tb@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509/x509_vfy.h b/src/lib/libcrypto/x509/x509_vfy.h index 133ffda337..34fb913350 100644 --- a/src/lib/libcrypto/x509/x509_vfy.h +++ b/src/lib/libcrypto/x509/x509_vfy.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_vfy.h,v 1.46 2021/11/01 20:53:08 tb Exp $ */ | 1 | /* $OpenBSD: x509_vfy.h,v 1.47 2021/11/19 16:35:10 schwarze Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -281,8 +281,8 @@ X509_CRL *X509_OBJECT_get0_X509_CRL(X509_OBJECT *xo); | |||
281 | X509_STORE *X509_STORE_new(void); | 281 | X509_STORE *X509_STORE_new(void); |
282 | void X509_STORE_free(X509_STORE *v); | 282 | void X509_STORE_free(X509_STORE *v); |
283 | int X509_STORE_up_ref(X509_STORE *x); | 283 | int X509_STORE_up_ref(X509_STORE *x); |
284 | STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm); | 284 | STACK_OF(X509) *X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm); |
285 | STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm); | 285 | STACK_OF(X509_CRL) *X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm); |
286 | STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(X509_STORE *xs); | 286 | STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(X509_STORE *xs); |
287 | void *X509_STORE_get_ex_data(X509_STORE *xs, int idx); | 287 | void *X509_STORE_get_ex_data(X509_STORE *xs, int idx); |
288 | int X509_STORE_set_ex_data(X509_STORE *xs, int idx, void *data); | 288 | 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, | |||
354 | const char *str, int len, X509_OBJECT *ret); | 354 | const char *str, int len, X509_OBJECT *ret); |
355 | int X509_LOOKUP_shutdown(X509_LOOKUP *ctx); | 355 | int X509_LOOKUP_shutdown(X509_LOOKUP *ctx); |
356 | 356 | ||
357 | int X509_STORE_load_locations (X509_STORE *ctx, | 357 | int X509_STORE_load_locations(X509_STORE *ctx, |
358 | const char *file, const char *dir); | 358 | const char *file, const char *dir); |
359 | int X509_STORE_load_mem(X509_STORE *ctx, void *buf, int len); | 359 | int X509_STORE_load_mem(X509_STORE *ctx, void *buf, int len); |
360 | int X509_STORE_set_default_paths(X509_STORE *ctx); | 360 | int X509_STORE_set_default_paths(X509_STORE *ctx); |