diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-07-16 11:27:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:01:08 -0500 |
commit | 365778a993b7d76af6d53ba2a598b7e271741dc5 (patch) | |
tree | 9c4048151d459c87c1c9621dd2697bad5a0b3213 /source/librpc/config.mk | |
parent | f47e5f716137b08380b17fdd95d2f454f53d6ce6 (diff) | |
download | samba-365778a993b7d76af6d53ba2a598b7e271741dc5.tar.gz |
r23890: Allow wbinfo -a to work against Samba4's winbind.
Add a test for wbinfo -a to test_member.sh
Reimplement the server-side 'pam_auth' and 'pam_auth_crap' calls to
use the same SamLogon code as auth_winbind uses.
In my previous code, we did not bind to the LSA and SAMR pipes, before
attempting operations. We now do this (how we passed any tests before
is beyond me).
This required some rework, particularly to make it easier to setup
secondary connections. The new rpc_secondary_auth_connection()
function also performs the bind.
The dcerpc_connect.c file was getting to big, so things have been
merged into dcerpc_secondary.c.
Andrew Bartlett
Diffstat (limited to 'source/librpc/config.mk')
-rw-r--r-- | source/librpc/config.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/librpc/config.mk b/source/librpc/config.mk index f31ccf57f05..5cec7e1f676 100644 --- a/source/librpc/config.mk +++ b/source/librpc/config.mk @@ -476,7 +476,8 @@ OBJ_FILES = \ rpc/dcerpc_smb.o \ rpc/dcerpc_smb2.o \ rpc/dcerpc_sock.o \ - rpc/dcerpc_connect.o + rpc/dcerpc_connect.o \ + rpc/dcerpc_secondary.o PRIVATE_DEPENDENCIES = \ samba-socket LIBCLI_RESOLVE LIBCLI_SMB LIBCLI_SMB2 \ LIBNDR NDR_DCERPC RPC_NDR_EPMAPPER \ |