diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-06-29 00:18:50 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-07-20 13:21:53 +0200 |
commit | e8aa8b6c8f6d4e2b2bbd5e5721d977b0a6aa3cee (patch) | |
tree | 9112c06d1c60edbbe94b3407f33538a0f9bf1c97 /crypto/o_fopen.c | |
parent | Remove reduntant X509_STORE_CTX_set_verify_cb declaration (diff) | |
download | openssl-e8aa8b6c8f6d4e2b2bbd5e5721d977b0a6aa3cee.tar.xz openssl-e8aa8b6c8f6d4e2b2bbd5e5721d977b0a6aa3cee.zip |
Fix a few if(, for(, while( inside code.
Fix some indentation at the same time
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1292)
Diffstat (limited to 'crypto/o_fopen.c')
-rw-r--r-- | crypto/o_fopen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/o_fopen.c b/crypto/o_fopen.c index 0bdb53fe53..a3a006574d 100644 --- a/crypto/o_fopen.c +++ b/crypto/o_fopen.c @@ -69,7 +69,7 @@ FILE *openssl_fopen(const char *filename, const char *mode) if (newname == NULL) return NULL; - for(iterator = newname, lastchar = '\0'; + for (iterator = newname, lastchar = '\0'; *filename; filename++, iterator++) { if (lastchar == '/' && filename[0] == '.' && filename[1] != '.' && filename[1] != '/') { |