diff options
author | Jeremy Allison <jra@samba.org> | 2000-06-08 17:50:19 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-06-08 17:50:19 +0000 |
commit | 28555ec92e061aafb31a9b071caf00e44132c70f (patch) | |
tree | d83686ff0f944834ce7dfb258d6fdcbdf6d3b264 /source3/smbd/reply.c | |
parent | ce17aace9944541f430645c373025ad98dded75d (diff) | |
download | samba-28555ec92e061aafb31a9b071caf00e44132c70f.tar.gz samba-28555ec92e061aafb31a9b071caf00e44132c70f.tar.bz2 samba-28555ec92e061aafb31a9b071caf00e44132c70f.zip |
include/smb.h: Removed NET_USER_3 struct from user struct. It doesn't belong there (yet)
as there is no infrastructure for it. Replaced it with a dynamic array
of group SIDs plus a user.
passdb/passdb.c: Added setup_user_sids() function. This is where the lookup should be done,
eventually calling winbind.
smbd/password.c: Changed to call setup_user_sids(). Removed spurious DEBUG(0) statements.
smbd/reply.c: Removed extra parameter to register_vuid().
Jeremy.
(This used to be commit 425f4ad9a5e0e7d49620276100ade7a0cae47011)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index f9c0695a39..00a0ce3c4a 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1001,9 +1001,7 @@ int reply_sesssetup_and_X(connection_struct *conn, char *inbuf,char *outbuf,int /* register the name and uid as being validated, so further connections to a uid can get through without a password, on the same VC */ - DEBUG(0,("must call domain_client_validate() which returns a ")); - DEBUG(0,("NET_USER_INFO_3 structure to pass to register_vuid()")); - sess_vuid = register_vuid(uid,gid,user,sesssetup_user,domain,guest, NULL); + sess_vuid = register_vuid(uid,gid,user,sesssetup_user,domain,guest); SSVAL(outbuf,smb_uid,sess_vuid); SSVAL(inbuf,smb_uid,sess_vuid); |