diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-11-08 02:28:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:40 -0500 |
commit | 3dbc38fd6b19538e2325a1901659ead4e0a9db40 (patch) | |
tree | 09e522e04c70755194905220cba3bf12e5e07cd8 /source4/libcli/auth/kerberos.c | |
parent | 8c2e179d477c99ab9c52e6b9af19a86d553d10b5 (diff) | |
download | samba-3dbc38fd6b19538e2325a1901659ead4e0a9db40.tar.gz samba-3dbc38fd6b19538e2325a1901659ead4e0a9db40.tar.bz2 samba-3dbc38fd6b19538e2325a1901659ead4e0a9db40.zip |
r3612: This appears to be the 'offical' way to initialise this struct.
Andrew Bartlett
(This used to be commit 47d67c6e5b265e4192fcae0d9cd72b3ac097785e)
Diffstat (limited to 'source4/libcli/auth/kerberos.c')
-rw-r--r-- | source4/libcli/auth/kerberos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/auth/kerberos.c b/source4/libcli/auth/kerberos.c index 224e4abbdc..50f2e0f24e 100644 --- a/source4/libcli/auth/kerberos.c +++ b/source4/libcli/auth/kerberos.c @@ -67,7 +67,7 @@ kerb_prompter(krb5_context ctx, void *data, return code; } - ZERO_STRUCT(options); + krb5_get_init_creds_opt_init(&options); if ((code = krb5_get_init_creds_password(ctx, &my_creds, me, password, kerb_prompter, |