diff options
author | jsing <> | 2014-04-15 13:42:55 +0000 |
---|---|---|
committer | jsing <> | 2014-04-15 13:42:55 +0000 |
commit | 179b5aba8054138fe6ae76eb86d0ba485fa99f67 (patch) | |
tree | f085d85cb06e6b6e1a1b1d52cced54d9f7d7e5f2 /src/lib/libcrypto/ossl_typ.h | |
parent | 91b7379546c278344ff2e20e9eb6ecec326f20cd (diff) | |
download | openbsd-179b5aba8054138fe6ae76eb86d0ba485fa99f67.tar.gz openbsd-179b5aba8054138fe6ae76eb86d0ba485fa99f67.tar.bz2 openbsd-179b5aba8054138fe6ae76eb86d0ba485fa99f67.zip |
First pass at applying KNF to the OpenSSL code, which almost makes it
readable. This pass is whitespace only and can readily be verified using
tr and md5.
Diffstat (limited to 'src/lib/libcrypto/ossl_typ.h')
-rw-r--r-- | src/lib/libcrypto/ossl_typ.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ossl_typ.h b/src/lib/libcrypto/ossl_typ.h index ea9227f6f9..ae79bf8ae4 100644 --- a/src/lib/libcrypto/ossl_typ.h +++ b/src/lib/libcrypto/ossl_typ.h | |||
@@ -182,18 +182,18 @@ typedef struct DIST_POINT_st DIST_POINT; | |||
182 | typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT; | 182 | typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT; |
183 | typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; | 183 | typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; |
184 | 184 | ||
185 | /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ | 185 | /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ |
186 | #define DECLARE_PKCS12_STACK_OF(type) /* Nothing */ | 186 | #define DECLARE_PKCS12_STACK_OF(type) /* Nothing */ |
187 | #define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */ | 187 | #define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */ |
188 | 188 | ||
189 | typedef struct crypto_ex_data_st CRYPTO_EX_DATA; | 189 | typedef struct crypto_ex_data_st CRYPTO_EX_DATA; |
190 | /* Callback types for crypto.h */ | 190 | /* Callback types for crypto.h */ |
191 | typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad, | 191 | typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad, |
192 | int idx, long argl, void *argp); | 192 | int idx, long argl, void *argp); |
193 | typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad, | 193 | typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad, |
194 | int idx, long argl, void *argp); | 194 | int idx, long argl, void *argp); |
195 | typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d, | 195 | typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, |
196 | int idx, long argl, void *argp); | 196 | void *from_d, int idx, long argl, void *argp); |
197 | 197 | ||
198 | typedef struct ocsp_req_ctx_st OCSP_REQ_CTX; | 198 | typedef struct ocsp_req_ctx_st OCSP_REQ_CTX; |
199 | typedef struct ocsp_response_st OCSP_RESPONSE; | 199 | typedef struct ocsp_response_st OCSP_RESPONSE; |