diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2018-04-25 21:53:27 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-04-27 00:51:35 +0200 |
commit | 2f13e3d23d9acd448b1e1e2cad419b4c118c43e4 (patch) | |
tree | 9dc0c85afa6f373af02b03734c8c4d12f60d1667 /lib/vtls | |
parent | 1d71ce845a6ac3887205c2842fad0a476f7cf3ec (diff) |
checksrc: force indentation of lines after an else
This extends the INDENTATION case to also handle 'else' statements
and require proper indentation on the following line. Also fixes the
offending cases found in the codebase.
Closes #2532
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/schannel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index 190ecca23..01f6f6691 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -544,8 +544,7 @@ schannel_connect_step1(struct connectdata *conn, int sockindex) InitSecBuffer(&inbuf, SECBUFFER_APPLICATION_PROTOCOLS, alpn_buffer, cur); InitSecBufferDesc(&inbuf_desc, &inbuf, 1); } - else - { + else { InitSecBuffer(&inbuf, SECBUFFER_EMPTY, NULL, 0); InitSecBufferDesc(&inbuf_desc, &inbuf, 1); } |