make X509_NAME opaque
[openssl.git] / crypto / x509v3 / v3_scts.c
index 858f71914753dedffcc7f02b9c7285fdb183be51..e70d5e927f362eeb0a88dd17491969fb9f58e882 100644 (file)
@@ -60,7 +60,7 @@
 #include "cryptlib.h"
 #include <openssl/asn1.h>
 #include <openssl/x509v3.h>
-#include "../ssl/ssl_locl.h"
+#include "../../ssl/ssl_locl.h"
 
 #if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
 # define SCT_TIMESTAMP unsigned __int64
@@ -222,14 +222,14 @@ static STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a,
 
         sct->version = *p2++;
         if (sct->version == 0) { /* SCT v1 */
-                        /*-
-                         * Fixed-length header:
-                         *              struct {
-                         * (1 byte)       Version sct_version;
-                         * (32 bytes)     LogID id;
-                         * (8 bytes)      uint64 timestamp;
-                         * (2 bytes + ?)  CtExtensions extensions;
-                         */
+            /*-
+             * Fixed-length header:
+             *              struct {
+             * (1 byte)       Version sct_version;
+             * (32 bytes)     LogID id;
+             * (8 bytes)      uint64 timestamp;
+             * (2 bytes + ?)  CtExtensions extensions;
+             */
             if (sctlen < 43)
                 goto err;
             sctlen -= 43;
@@ -248,12 +248,12 @@ static STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a,
             p2 += fieldlen;
             sctlen -= fieldlen;
 
-                        /*-
-                         * digitally-signed struct header:
-                         * (1 byte)       Hash algorithm
-                         * (1 byte)       Signature algorithm
-                         * (2 bytes + ?)  Signature
-                         */
+            /*-
+             * digitally-signed struct header:
+             * (1 byte)       Hash algorithm
+             * (1 byte)       Signature algorithm
+             * (2 bytes + ?)  Signature
+             */
             if (sctlen < 4)
                 goto err;
             sctlen -= 4;