diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-04-25 03:03:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:38 -0500 |
commit | 96700ef79d2925a5d67a3b835924b97dcb0b3d79 (patch) | |
tree | 98e1325b4fd6285f3506fefab6aabd46a20f6f21 | |
parent | 4411479b93ae36142a55d875a9edde1d6cf9631c (diff) | |
download | samba-96700ef79d2925a5d67a3b835924b97dcb0b3d79.tar.gz samba-96700ef79d2925a5d67a3b835924b97dcb0b3d79.tar.bz2 samba-96700ef79d2925a5d67a3b835924b97dcb0b3d79.zip |
r6452: This particular credentials feature needs to be NULL by default.
Andrew Bartlett
(This used to be commit e4e221705306c63986f384938bbab5006caeec2e)
-rw-r--r-- | source4/lib/credentials.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/lib/credentials.c b/source4/lib/credentials.c index ba263260bb..f5ce886ed0 100644 --- a/source4/lib/credentials.c +++ b/source4/lib/credentials.c @@ -37,6 +37,7 @@ struct cli_credentials *cli_credentials_init(TALLOC_CTX *mem_ctx) return cred; } + cred->netlogon_creds = NULL; cred->machine_account_pending = False; cred->workstation_obtained = CRED_UNINITIALISED; cred->username_obtained = CRED_UNINITIALISED; |