From: Andrew Bartlett Date: Tue, 28 Aug 2012 23:44:52 +0000 (+1000) Subject: auth/credentials: Remove unused, and un-declared cli_credentials_set_krbtgt() X-Git-Tag: ldb-1.1.12~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17337cfec071f7f82fa4c50ace751d51277a4b20;p=thirdparty%2Fsamba.git auth/credentials: Remove unused, and un-declared cli_credentials_set_krbtgt() --- 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 @@ -331,35 +331,6 @@ _PUBLIC_ NTSTATUS cli_credentials_set_machine_account(struct cli_credentials *cr return status; } -/** - * 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. *