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 /tests/libtest/stub_gssapi.c | |
parent | 1d71ce845a6ac3887205c2842fad0a476f7cf3ec (diff) | |
download | curl-2f13e3d23d9acd448b1e1e2cad419b4c118c43e4.tar.gz |
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 'tests/libtest/stub_gssapi.c')
-rw-r--r-- | tests/libtest/stub_gssapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/stub_gssapi.c b/tests/libtest/stub_gssapi.c index 168becf88..883cc1900 100644 --- a/tests/libtest/stub_gssapi.c +++ b/tests/libtest/stub_gssapi.c @@ -324,7 +324,7 @@ OM_uint32 gss_display_status(OM_uint32 *min, if(status_string->value) status_string->length = strlen(status_string->value); else - return GSS_S_FAILURE; + return GSS_S_FAILURE; } return GSS_S_COMPLETE; |