From: Benjamin Kaduk Date: Fri, 30 Jun 2017 18:25:20 +0000 (-0500) Subject: Improve style X-Git-Tag: OpenSSL_1_1_1-pre1~959 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=7af42628c1f2864cd73659245742baabdb1a449f Improve style Spaces around operators. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3860) --- 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; }