OPENSSL_NO_xxx cleanup: RFC3779
[openssl.git] / crypto / x509v3 / v3_scts.c
index 858f71914753dedffcc7f02b9c7285fdb183be51..9a4c3eba0bdd5fcc0e414d8ad211ef93bf97a466 100644 (file)
@@ -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;