aboutsummaryrefslogtreecommitdiff
path: root/client/krb5.c
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2020-05-17 20:21:59 -0700
committerRuss Allbery <eagle@eyrie.org>2020-05-17 20:21:59 -0700
commit108233784827d54361c99c67eaee9e668010b3c3 (patch)
tree329ad2e791fb27ecc037259c16b922be03e977d0 /client/krb5.c
parent201ac5003d4fba8b15dbb64628782970bd3422fd (diff)
Reformat all C code with clang-format-10
Diffstat (limited to 'client/krb5.c')
-rw-r--r--client/krb5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/krb5.c b/client/krb5.c
index f0c0ff1..42e20ea 100644
--- a/client/krb5.c
+++ b/client/krb5.c
@@ -47,8 +47,8 @@ kinit(krb5_context ctx, const char *principal)
krb5_get_init_creds_opt_set_default_flags(ctx, "wallet", princ->realm,
opts);
memset(&creds, 0, sizeof(creds));
- status = krb5_get_init_creds_password(ctx, &creds, princ, NULL,
- krb5_prompter_posix, NULL, 0, NULL, opts);
+ status = krb5_get_init_creds_password(
+ ctx, &creds, princ, NULL, krb5_prompter_posix, NULL, 0, NULL, opts);
if (status != 0)
die_krb5(ctx, status, "authentication failed");