From 2d02b5e9392c13e9dbabd167809a55487e776f47 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 9 Feb 2012 15:15:56 +1100 Subject: s3-secrets: Remove unused secrets_delete_machine_password() Found by callcatcher. Andrew Bartlett --- source3/include/secrets.h | 1 - source3/passdb/machine_account_secrets.c | 13 ------------- 2 files changed, 14 deletions(-) (limited to 'source3') diff --git a/source3/include/secrets.h b/source3/include/secrets.h index 6cb2e0473e..81d6c68f3c 100644 --- a/source3/include/secrets.h +++ b/source3/include/secrets.h @@ -110,7 +110,6 @@ bool secrets_fetch_trusted_domain_password(const char *domain, char** pwd, struct dom_sid *sid, time_t *pass_last_set_time); bool secrets_store_trusted_domain_password(const char* domain, const char* pwd, const struct dom_sid *sid); -bool secrets_delete_machine_password(const char *domain); bool secrets_delete_machine_password_ex(const char *domain); bool secrets_delete_domain_sid(const char *domain); bool secrets_store_machine_password(const char *pass, const char *domain, enum netr_SchannelType sec_channel); diff --git a/source3/passdb/machine_account_secrets.c b/source3/passdb/machine_account_secrets.c index 4a6642eef7..8aaea10d8c 100644 --- a/source3/passdb/machine_account_secrets.c +++ b/source3/passdb/machine_account_secrets.c @@ -396,19 +396,6 @@ static bool secrets_delete_prev_machine_password(const char *domain) return secrets_delete(machine_prev_password_keystr(domain)); } -/************************************************************************ - Routine to delete the plaintext machine account password and old - password if any -************************************************************************/ - -bool secrets_delete_machine_password(const char *domain) -{ - if (!secrets_delete_prev_machine_password(domain)) { - return false; - } - return secrets_delete(machine_password_keystr(domain)); -} - /************************************************************************ Routine to delete the plaintext machine account password, old password, sec channel type and last change time from secrets database -- cgit