mirror of
https://github.com/curl/curl.git
synced 2026-07-16 06:27:17 +03:00
tidy-up: indentation [ci skip]
This commit is contained in:
parent
cb7558af39
commit
8115e790dd
2 changed files with 8 additions and 8 deletions
14
lib/krb5.c
14
lib/krb5.c
|
|
@ -372,13 +372,13 @@ krb5_auth(void *app_data, struct Curl_easy *data, struct connectdata *conn)
|
|||
|
||||
static void krb5_end(void *app_data)
|
||||
{
|
||||
OM_uint32 min;
|
||||
gss_ctx_id_t *context = app_data;
|
||||
if(*context != GSS_C_NO_CONTEXT) {
|
||||
OM_uint32 maj = gss_delete_sec_context(&min, context, GSS_C_NO_BUFFER);
|
||||
(void)maj;
|
||||
DEBUGASSERT(maj == GSS_S_COMPLETE);
|
||||
}
|
||||
OM_uint32 min;
|
||||
gss_ctx_id_t *context = app_data;
|
||||
if(*context != GSS_C_NO_CONTEXT) {
|
||||
OM_uint32 maj = gss_delete_sec_context(&min, context, GSS_C_NO_BUFFER);
|
||||
(void)maj;
|
||||
DEBUGASSERT(maj == GSS_S_COMPLETE);
|
||||
}
|
||||
}
|
||||
|
||||
static const struct Curl_sec_client_mech Curl_krb5_client_mech = {
|
||||
|
|
|
|||
|
|
@ -551,7 +551,7 @@ static const struct feat features_table[] = {
|
|||
#ifdef HAVE_ZSTD
|
||||
FEATURE("zstd", NULL, CURL_VERSION_ZSTD),
|
||||
#endif
|
||||
{NULL, NULL, 0}
|
||||
{NULL, NULL, 0}
|
||||
};
|
||||
|
||||
static const char *feature_names[sizeof(features_table) /
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue