From 7af42628c1f2864cd73659245742baabdb1a449f Mon Sep 17 00:00:00 2001 From: Benjamin Kaduk Date: Fri, 30 Jun 2017 13:25:20 -0500 Subject: [PATCH] Improve style Spaces around operators. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3860) --- crypto/store/loader_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/store/loader_file.c b/crypto/store/loader_file.c index 7cb145753e..ca1506513a 100644 --- a/crypto/store/loader_file.c +++ b/crypto/store/loader_file.c @@ -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; } -- 2.25.1