fix various formatting issues
authorDr. Stephen Henson <steve@openssl.org>
Fri, 5 Feb 2016 15:43:53 +0000 (15:43 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Mon, 8 Feb 2016 18:43:49 +0000 (18:43 +0000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
apps/pkcs12.c
crypto/pkcs12/p12_mutl.c
crypto/pkcs12/p12_sbag.c

index 8c0e7f15fa321eeb4b6fedb49ff7f6b5593edc01..2b9a08024c392790865031acda70cc08ddd70103 100644 (file)
@@ -542,9 +542,10 @@ int pkcs12_main(int argc, char **argv)
 
     if ((options & INFO) && PKCS12_mac_present(p12)) {
         ASN1_INTEGER *tmaciter;
+
         PKCS12_get0_mac(NULL, NULL, NULL, &tmaciter, p12);
         BIO_printf(bio_err, "MAC Iteration %ld\n",
-                   tmaciter ? ASN1_INTEGER_get(tmaciter) : 1);
+                   tmaciter  != NULL ? ASN1_INTEGER_get(tmaciter) : 1L);
     }
     if (macver) {
         /* If we enter empty password try no password first */
@@ -665,6 +666,7 @@ int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bag, char *pass,
     case NID_pkcs8ShroudedKeyBag:
         if (options & INFO) {
             X509_SIG *tp8;
+
             BIO_printf(bio_err, "Shrouded Keybag: ");
             tp8 = PKCS12_SAFEBAG_get0_pkcs8(bag);
             alg_print(tp8->algor);
index 62a62cbe9ba3d09c257b037389087601d1c38a1d..230f3e6b302e995bf6f1713815112d0f92f26273 100644 (file)
@@ -66,7 +66,7 @@
 
 int PKCS12_mac_present(PKCS12 *p12)
 {
-return p12->mac ? 1 : 0;
+    return p12->mac ? 1 : 0;
 }
 
 void PKCS12_get0_mac(ASN1_OCTET_STRING **pmac, X509_ALGOR **pmacalg,
index d0ed1e13b023c1dbcfb009e53b0466928243344b..62703b4dc3bd30ed041e6969c72015ad6323db17 100644 (file)
@@ -106,6 +106,7 @@ int PKCS12_SAFEBAG_get_nid(PKCS12_SAFEBAG *bag)
 int PKCS12_SAFEBAG_get_bag_nid(PKCS12_SAFEBAG *bag)
 {
     int btype = PKCS12_SAFEBAG_get_nid(bag);
+
     if (btype != NID_certBag || btype != NID_crlBag || btype != NID_secretBag)
         return -1;
     return OBJ_obj2nid(bag->value.bag->type);
@@ -163,6 +164,7 @@ PKCS12_SAFEBAG *PKCS12_SAFEBAG_create0_p8inf(PKCS8_PRIV_KEY_INFO *p8)
 PKCS12_SAFEBAG *PKCS12_SAFEBAG_create0_pkcs8(X509_SIG *p8)
 {
     PKCS12_SAFEBAG *bag = PKCS12_SAFEBAG_new();
+
     /* Set up the safe bag */
     if (bag == NULL) {
         PKCS12err(PKCS12_F_PKCS12_SAFEBAG_CREATE0_PKCS8, ERR_R_MALLOC_FAILURE);