summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2018-05-18 22:02:23 +0000
committertb <>2018-05-18 22:02:23 +0000
commita3571a6f5858811485a8369d25914a65dac0e7dc (patch)
treea476de46cac1222de00d11df32f7d80a05c94aca /src
parent634ba320528daa064590229749a91b1740c31c1c (diff)
downloadopenbsd-a3571a6f5858811485a8369d25914a65dac0e7dc.tar.gz
openbsd-a3571a6f5858811485a8369d25914a65dac0e7dc.tar.bz2
openbsd-a3571a6f5858811485a8369d25914a65dac0e7dc.zip
Fix eyesore indentation of member functions of X509_LOOKUP_METHOD.
Sprinkle a few spaces after commas while there. Omitted from earlier commit to reduce noise in the diff.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/x509/x509_vfy.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/lib/libcrypto/x509/x509_vfy.h b/src/lib/libcrypto/x509/x509_vfy.h
index ee9290347b..a29c2f00d3 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.28 2018/05/18 17:46:17 tb Exp $ */ 1/* $OpenBSD: x509_vfy.h,v 1.29 2018/05/18 22:02:23 tb 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 *
@@ -134,17 +134,16 @@ typedef struct x509_lookup_method_st
134 void (*free)(X509_LOOKUP *ctx); 134 void (*free)(X509_LOOKUP *ctx);
135 int (*init)(X509_LOOKUP *ctx); 135 int (*init)(X509_LOOKUP *ctx);
136 int (*shutdown)(X509_LOOKUP *ctx); 136 int (*shutdown)(X509_LOOKUP *ctx);
137 int (*ctrl)(X509_LOOKUP *ctx,int cmd,const char *argc,long argl, 137 int (*ctrl)(X509_LOOKUP *ctx, int cmd, const char *argc, long argl,
138 char **ret); 138 char **ret);
139 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name, 139 int (*get_by_subject)(X509_LOOKUP *ctx, int type, X509_NAME *name,
140 X509_OBJECT *ret); 140 X509_OBJECT *ret);
141 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name, 141 int (*get_by_issuer_serial)(X509_LOOKUP *ctx, int type, X509_NAME *name,
142 ASN1_INTEGER *serial,X509_OBJECT *ret); 142 ASN1_INTEGER *serial,X509_OBJECT *ret);
143 int (*get_by_fingerprint)(X509_LOOKUP *ctx,int type, 143 int (*get_by_fingerprint)(X509_LOOKUP *ctx, int type,
144 const unsigned char *bytes,int len, 144 const unsigned char *bytes, int len, X509_OBJECT *ret);
145 X509_OBJECT *ret); 145 int (*get_by_alias)(X509_LOOKUP *ctx, int type, const char *str,
146 int (*get_by_alias)(X509_LOOKUP *ctx,int type, const char *str,int len, 146 int len, X509_OBJECT *ret);
147 X509_OBJECT *ret);
148 } X509_LOOKUP_METHOD; 147 } X509_LOOKUP_METHOD;
149 148
150typedef struct X509_VERIFY_PARAM_ID_st X509_VERIFY_PARAM_ID; 149typedef struct X509_VERIFY_PARAM_ID_st X509_VERIFY_PARAM_ID;