Fix indent issue with functions using STACK_OF
authorMatt Caswell <matt@openssl.org>
Tue, 20 Jan 2015 22:54:52 +0000 (22:54 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:43:37 +0000 (09:43 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/x509/x509_lu.c
crypto/x509/x509_vfy.h

index 8a85cb50dac37edc16c9c21dfc8ce3dfee8214e7..161d65d2bfe5e9216e3dd4031fec8a95ac0f3b3c 100644 (file)
@@ -485,7 +485,7 @@ X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h, int type,
        return sk_X509_OBJECT_value(h, idx);
        }
 
-STACK_OF(X509)X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
+STACK_OF(X509) *X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
        {
        int i, idx, cnt;
        STACK_OF(X509) *sk;
@@ -534,7 +534,7 @@ STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
 
        }
 
-STACK_OF(X509_CRL)X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm)
+STACK_OF(X509_CRL) *X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm)
        {
        int i, idx, cnt;
        STACK_OF(X509_CRL) *sk;
index c05c47a654cda19b933bc8824617f1654cf8a593..026e174e1abf575bd3a4d41a1274173c3e7ec939 100644 (file)
@@ -412,8 +412,8 @@ void X509_OBJECT_free_contents(X509_OBJECT *a);
 X509_STORE *X509_STORE_new(void );
 void X509_STORE_free(X509_STORE *v);
 
-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);
 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags);
 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
 int X509_STORE_set_trust(X509_STORE *ctx, int trust);