diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-30 10:55:31 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-30 16:05:30 +0200 |
commit | 0e607542dca1247217997184224fc1a779778166 (patch) | |
tree | 104bc925f4d51abb088953cc35de96ee33e9e610 /lib/vtls/openssl.c | |
parent | 529add48bc2a8e66bdbc1926e7708535dd5317a2 (diff) | |
download | curl-0e607542dca1247217997184224fc1a779778166.tar.gz |
cleanup: insert newline after if() conditions
Our code style mandates we put the conditional block on a separate
line. These mistakes are now detected by the updated checksrc.
Diffstat (limited to 'lib/vtls/openssl.c')
-rw-r--r-- | lib/vtls/openssl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 14bfe3562..176fa522a 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -1824,7 +1824,8 @@ static CURLcode verifystatus(struct connectdata *conn, } end: - if(br) OCSP_BASICRESP_free(br); + if(br) + OCSP_BASICRESP_free(br); OCSP_RESPONSE_free(rsp); return result; |