Reformat M_check_autoarg to match our coding style
authorRichard Levitte <levitte@openssl.org>
Tue, 20 Dec 2016 18:21:00 +0000 (19:21 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 20 Dec 2016 22:21:25 +0000 (23:21 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2121)

crypto/evp/pmeth_fn.c

index e9b20a60888c260c5eed35a24045380eb38bcb0d..eb638019ce077f6cf388f3f58fa2fa846fb3f5f7 100644 (file)
 #include "internal/evp_int.h"
 
 #define M_check_autoarg(ctx, arg, arglen, err) \
-        if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) \
-                { \
-                size_t pksize = (size_t)EVP_PKEY_size(ctx->pkey); \
-                if (pksize == 0) \
-                        { \
-                        EVPerr(err, EVP_R_INVALID_KEY); /*ckerr_ignore*/\
-                        return 0; \
-                        } \
-                else if (!arg)                 \
-                        { \
-                        *arglen = pksize; \
-                        return 1; \
-                        } \
-                else if (*arglen < pksize) \
-                        { \
-                        EVPerr(err, EVP_R_BUFFER_TOO_SMALL); /*ckerr_ignore*/\
-                        return 0; \
-                        } \
-                }
+    if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) {           \
+        size_t pksize = (size_t)EVP_PKEY_size(ctx->pkey);         \
+                                                                  \
+        if (pksize == 0) {                                        \
+            EVPerr(err, EVP_R_INVALID_KEY); /*ckerr_ignore*/      \
+            return 0;                                             \
+        }                                                         \
+        if (!arg) {                                               \
+            *arglen = pksize;                                     \
+            return 1;                                             \
+        }                                                         \
+        if (*arglen < pksize) {                                   \
+            EVPerr(err, EVP_R_BUFFER_TOO_SMALL); /*ckerr_ignore*/ \
+            return 0;                                             \
+        }                                                         \
+    }
 
 int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx)
 {