summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-10-06 01:42:20 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-10-06 01:42:20 +0000
commit1f9cabd5b8145dfee410d038b09d6b54a731d9f8 (patch)
tree3b1739ae6232433937559dd820c6aec12518faa8
parent482a9ef278567a35d3bcad1c2048ee97d86bfb9c (diff)
downloadsamba-1f9cabd5b8145dfee410d038b09d6b54a731d9f8.tar.gz
samba-1f9cabd5b8145dfee410d038b09d6b54a731d9f8.tar.bz2
samba-1f9cabd5b8145dfee410d038b09d6b54a731d9f8.zip
move libsmb/domain_client_validate.o around in the makefile again, it really is
an authenticaion object that happens to also be used by winbind. We need to fix this up at some stage. In the end it will probably be best if winbind does the login over its own internally managed connections, not a new one per authenticiaon. Then this would no longer be an issue, as it could call cli_nt_login_network() directly. Andrew Bartlett (This used to be commit 154d0ea4df684944c6bc58cb3f5dc64ee972cf97)
-rw-r--r--source3/Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 9e7d6e1bf4..3534054df4 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -165,8 +165,7 @@ RPC_CLIENT_OBJ = rpc_client/cli_netlogon.o rpc_client/cli_pipe.o \
rpc_client/cli_lsarpc.o rpc_client/cli_connect.o \
rpc_client/cli_use.o rpc_client/cli_login.o \
rpc_client/cli_spoolss_notify.o rpc_client/ncacn_np_use.o \
- lib/util_list.o rpc_client/cli_trust.o \
- libsmb/domain_client_validate.o
+ lib/util_list.o rpc_client/cli_trust.o
LOCKING_OBJ = locking/locking.o locking/brlock.o locking/posix.o
@@ -188,7 +187,9 @@ NOTIFY_OBJ = smbd/notify.o smbd/notify_hash.o smbd/notify_kernel.o
PLAINTEXT_AUTH_OBJ = passdb/pampass.o passdb/pass_check.o
AUTH_OBJ = smbd/auth.o smbd/auth_smbpasswd.o smbd/auth_server.o smbd/auth_domain.o \
- smbd/auth_rhosts.o smbd/auth_unix.o smbd/auth_util.o $(PLAINTEXT_AUTH_OBJ)
+ smbd/auth_rhosts.o smbd/auth_unix.o smbd/auth_util.o $(PLAINTEXT_AUTH_OBJ) \
+ libsmb/domain_client_validate.o
+
SMBD_OBJ1 = smbd/server.o smbd/files.o smbd/chgpasswd.o smbd/connection.o \
smbd/utmp.o smbd/session.o \