diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-04-21 15:44:14 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-04-21 15:44:14 +0000 |
commit | 93f1e49da84bf40f940058773eb7a34a2bb6f38e (patch) | |
tree | e4304f96a6d3f810160221c6fb0f6a69381f9a58 /lib/libcrypto/pem/pem_lib.c | |
parent | 9c237ccf230d54b8cdb3967987f72cb6812ab751 (diff) |
More KNF.
Diffstat (limited to 'lib/libcrypto/pem/pem_lib.c')
-rw-r--r-- | lib/libcrypto/pem/pem_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/pem/pem_lib.c b/lib/libcrypto/pem/pem_lib.c index 9d5d8e714ca..c670ac2acb8 100644 --- a/lib/libcrypto/pem/pem_lib.c +++ b/lib/libcrypto/pem/pem_lib.c @@ -501,10 +501,10 @@ PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher) } header += 11; if (*header != '4') - return(0); + return (0); header++; if (*header != ',') - return(0); + return (0); header++; if (strncmp(header, "ENCRYPTED", 9) != 0) { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_ENCRYPTED); |