summaryrefslogtreecommitdiffstats
path: root/source/nsswitch
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-01-14 05:08:42 +0000
committerTim Potter <tpot@samba.org>2003-01-14 05:08:42 +0000
commit7b0c03cbf1376f82b0bb5f4cf86e2db3b0bc1dec (patch)
tree6e76a4334b6506ac7bf0b139321ae51867f95c62 /source/nsswitch
parentc64e2308bae31d48171685b3b67b8cace1b003b5 (diff)
downloadsamba-7b0c03cbf1376f82b0bb5f4cf86e2db3b0bc1dec.tar.gz
samba-7b0c03cbf1376f82b0bb5f4cf86e2db3b0bc1dec.tar.xz
samba-7b0c03cbf1376f82b0bb5f4cf86e2db3b0bc1dec.zip
Remove wrapper function _get_trust_account_password() as it doesn't
seem to do anything useful anymore other than call secrets_fetch_trust_account_password().
Diffstat (limited to 'source/nsswitch')
-rw-r--r--source/nsswitch/winbindd_misc.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/source/nsswitch/winbindd_misc.c b/source/nsswitch/winbindd_misc.c
index 74748f1aed0..6b7ef382ddf 100644
--- a/source/nsswitch/winbindd_misc.c
+++ b/source/nsswitch/winbindd_misc.c
@@ -26,19 +26,6 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_WINBIND
-/************************************************************************
- Routine to get the trust account password for a domain
-************************************************************************/
-static BOOL _get_trust_account_password(const char *domain, unsigned char *ret_pwd,
- time_t *pass_last_set_time)
-{
- if (!secrets_fetch_trust_account_password(domain, ret_pwd, pass_last_set_time)) {
- return False;
- }
-
- return True;
-}
-
/* Check the machine account password is valid */
enum winbindd_result winbindd_check_machine_acct(struct winbindd_cli_state *state)
@@ -52,8 +39,8 @@ enum winbindd_result winbindd_check_machine_acct(struct winbindd_cli_state *stat
/* Get trust account password */
again:
- if (!_get_trust_account_password(lp_workgroup(), trust_passwd,
- NULL)) {
+ if (!secrets_fetch_trust_account_password(
+ lp_workgroup(), trust_passwd, NULL)) {
result = NT_STATUS_INTERNAL_ERROR;
goto done;
}