diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/include/credentials.h | 3 | ||||
-rw-r--r-- | source4/lib/credentials.c | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/source4/include/credentials.h b/source4/include/credentials.h index d7bf8997eb..e7df58f217 100644 --- a/source4/include/credentials.h +++ b/source4/include/credentials.h @@ -23,7 +23,8 @@ /* In order of priority */ enum credentials_obtained { - CRED_GUESSED = 0, /* Current value should be used, which was guessed */ + CRED_UNINITIALISED = 0, /* We don't even have a guess yet */ + CRED_GUESSED, /* Current value should be used, which was guessed */ CRED_CALLBACK, /* Callback should be used to obtain value */ CRED_SPECIFIED /* Was explicitly specified on the command-line */ }; diff --git a/source4/lib/credentials.c b/source4/lib/credentials.c index 9c892b0688..ba263260bb 100644 --- a/source4/lib/credentials.c +++ b/source4/lib/credentials.c @@ -32,11 +32,17 @@ */ struct cli_credentials *cli_credentials_init(TALLOC_CTX *mem_ctx) { - struct cli_credentials *cred = talloc_zero(mem_ctx, struct cli_credentials); + struct cli_credentials *cred = talloc(mem_ctx, struct cli_credentials); if (!cred) { return cred; } + cred->machine_account_pending = False; + cred->workstation_obtained = CRED_UNINITIALISED; + cred->username_obtained = CRED_UNINITIALISED; + cred->password_obtained = CRED_UNINITIALISED; + cred->domain_obtained = CRED_UNINITIALISED; + cred->realm_obtained = CRED_UNINITIALISED; return cred; } |