summaryrefslogtreecommitdiffstats
path: root/source/Makefile.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-05 04:55:41 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-05 04:55:41 +0000
commit12f5515f556cf39fea98134fe3e2ac4540501048 (patch)
treed2af490912a83e46f2ac253ff9aca43b298414cc /source/Makefile.in
parent207ee8aac42cf4b35f07e496b15fdeabe50950bc (diff)
downloadsamba-12f5515f556cf39fea98134fe3e2ac4540501048.tar.gz
samba-12f5515f556cf39fea98134fe3e2ac4540501048.tar.xz
samba-12f5515f556cf39fea98134fe3e2ac4540501048.zip
I've decided to move the auth code around a bit more...
The auth_authsupplied_info typedef is now just a plain struct - auth_context, but it has been modified to contain the function pointers to the rest of the auth subsystem's components. (Who needs non-static functions anyway?) In working all this mess out, I fixed a number of memory leaks and moved the entire auth subsystem over to talloc(). Note that the TALLOC_CTX attached to the auth_context can be rather long-lived, it is provided for things that are intended to live as long. (The global_negprot_auth_context lasts the whole life of the smbd). I've also adjusted a few things in auth_domain.c, mainly passing the domain as a paramater to a few functions instead of looking up lp_workgroup(). I'm hopign to make this entire thing a bit more trusted domains (as PDC) freindly in the near future. Other than that, I moved a bit of the code around, hence the rather messy diff. Andrew Bartlett
Diffstat (limited to 'source/Makefile.in')
-rw-r--r--source/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Makefile.in b/source/Makefile.in
index c0a35b75c70..dacc947d614 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -201,7 +201,7 @@ PLAINTEXT_AUTH_OBJ = auth/pampass.o auth/pass_check.o
AUTH_OBJ = auth/auth.o auth/auth_sam.o auth/auth_server.o auth/auth_domain.o \
auth/auth_rhosts.o auth/auth_unix.o auth/auth_util.o auth/auth_winbind.o \
- auth/auth_info.o auth/auth_builtin.o $(PLAINTEXT_AUTH_OBJ)
+ auth/auth_builtin.o auth/auth_compat.o $(PLAINTEXT_AUTH_OBJ)
SMBD_OBJ1 = smbd/server.o smbd/files.o smbd/chgpasswd.o smbd/connection.o \