Browse Source

fix indentation

Francois Perrad 7 years ago
parent
commit
525b129466
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/pk/asn1/der/custom_type/der_decode_custom_type.c

+ 2 - 2
src/pk/asn1/der/custom_type/der_decode_custom_type.c

@@ -165,10 +165,10 @@ int der_decode_custom_type_ex(const unsigned char *in,   unsigned long  inlen,
                z = inlen;
                if ((err = der_decode_boolean(in + x, z, ((int *)data))) != CRYPT_OK) {
                   if (!ordered || list[i].optional) { continue; }
-                   goto LBL_ERR;
+                  goto LBL_ERR;
                }
                if ((err = der_length_boolean(&z)) != CRYPT_OK) {
-                   goto LBL_ERR;
+                  goto LBL_ERR;
                }
                break;