diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-29 09:44:52 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-29 11:34:52 +1000 |
commit | 17337cfec071f7f82fa4c50ace751d51277a4b20 (patch) | |
tree | af52166381f1904c8fb6f062ad34587a819982a4 /auth/credentials/credentials_secrets.c | |
parent | beafdd6410f122d39c32d51629dd7eaf20a8a6c1 (diff) | |
download | samba-17337cfec071f7f82fa4c50ace751d51277a4b20.tar.gz |
auth/credentials: Remove unused, and un-declared cli_credentials_set_krbtgt()
Diffstat (limited to 'auth/credentials/credentials_secrets.c')
-rw-r--r-- | auth/credentials/credentials_secrets.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/auth/credentials/credentials_secrets.c b/auth/credentials/credentials_secrets.c index dceffae0bb9..a44fe1c8b87 100644 --- a/auth/credentials/credentials_secrets.c +++ b/auth/credentials/credentials_secrets.c @@ -332,35 +332,6 @@ _PUBLIC_ NTSTATUS cli_credentials_set_machine_account(struct cli_credentials *cr } /** - * Fill in credentials for the machine trust account, from the secrets database. - * - * @param cred Credentials structure to fill in - * @retval NTSTATUS error detailing any failure - */ -NTSTATUS cli_credentials_set_krbtgt(struct cli_credentials *cred, - struct loadparm_context *lp_ctx) -{ - NTSTATUS status; - char *filter; - char *error_string; - /* Bleh, nasty recursion issues: We are setting a machine - * account here, so we don't want the 'pending' flag around - * any more */ - cred->machine_account_pending = false; - filter = talloc_asprintf(cred, SECRETS_KRBTGT_SEARCH, - cli_credentials_get_realm(cred), - cli_credentials_get_domain(cred)); - status = cli_credentials_set_secrets_lct(cred, lp_ctx, NULL, - SECRETS_PRINCIPALS_DN, - filter, 0, NULL, &error_string); - if (!NT_STATUS_IS_OK(status)) { - DEBUG(1, ("Could not find krbtgt (master Kerberos) account in secrets database: %s: %s\n", nt_errstr(status), error_string)); - talloc_free(error_string); - } - return status; -} - -/** * Fill in credentials for a particular prinicpal, from the secrets database. * * @param cred Credentials structure to fill in |