diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-11-12 18:22:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:24 -0500 |
commit | 789bed878aa94edf22521c6c1946d3ab73462516 (patch) | |
tree | a7aeff31da44e8051d7c86c5206f6525df8c258a /source3/nsswitch/winbindd_reconnect.c | |
parent | f8cb37ab19cc9499c23a1e1f40427ed48b707870 (diff) | |
download | samba-789bed878aa94edf22521c6c1946d3ab73462516.tar.gz samba-789bed878aa94edf22521c6c1946d3ab73462516.tar.xz samba-789bed878aa94edf22521c6c1946d3ab73462516.zip |
r11704: methods->alternate_name is not used anymore -- remove it
(This used to be commit 4a4f85f0ef8545b7062e9a49392d4488aa108036)
Diffstat (limited to 'source3/nsswitch/winbindd_reconnect.c')
-rw-r--r-- | source3/nsswitch/winbindd_reconnect.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/source3/nsswitch/winbindd_reconnect.c b/source3/nsswitch/winbindd_reconnect.c index 1a90717db3..77df9c1513 100644 --- a/source3/nsswitch/winbindd_reconnect.c +++ b/source3/nsswitch/winbindd_reconnect.c @@ -242,19 +242,6 @@ static NTSTATUS trusted_domains(struct winbindd_domain *domain, return result; } -static NTSTATUS alternate_name(struct winbindd_domain *domain) -{ - NTSTATUS result; - - result = msrpc_methods.alternate_name(domain); - - if (NT_STATUS_EQUAL(result, NT_STATUS_UNSUCCESSFUL)) - result = msrpc_methods.alternate_name(domain); - - return result; -} - - /* the rpc backend methods are exposed via this structure */ struct winbindd_methods reconnect_methods = { False, @@ -269,5 +256,4 @@ struct winbindd_methods reconnect_methods = { lookup_groupmem, sequence_number, trusted_domains, - alternate_name }; |