Improve style
authorBenjamin Kaduk <bkaduk@akamai.com>
Fri, 30 Jun 2017 18:25:20 +0000 (13:25 -0500)
committerBenjamin Kaduk <kaduk@mit.edu>
Thu, 27 Jul 2017 19:32:13 +0000 (14:32 -0500)
Spaces around operators.

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3860)

crypto/store/loader_file.c

index 7cb145753ee7a2f82e8eeb45a16591e94af2450e..ca1506513a08731daa985a5815ea89e948bf35cf 100644 (file)
@@ -864,8 +864,8 @@ static OSSL_STORE_LOADER_CTX *file_open(const OSSL_STORE_LOADER *loader,
         }
 
         ctx->_.file.file = BIO_push(buff, ctx->_.file.file);
-        if (BIO_buffer_peek(ctx->_.file.file, peekbuf, sizeof(peekbuf)-1) > 0) {
-            peekbuf[sizeof(peekbuf)-1] = '\0';
+        if (BIO_buffer_peek(ctx->_.file.file, peekbuf, sizeof(peekbuf) - 1) > 0) {
+            peekbuf[sizeof(peekbuf) - 1] = '\0';
             if (strstr(peekbuf, "-----BEGIN ") != NULL)
                 ctx->type = is_pem;
         }