diff options
Diffstat (limited to 'client/krb5.c')
-rw-r--r-- | client/krb5.c | 4 |
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"); |