From c3487b00dd1dde7fa0511211f466acc1c05d8f3d Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Fri, 9 Jun 2000 01:26:42 +0000 Subject: reverted jeremy's changes that removed NET_USER_INFO_3. will you please not just undercut work in progress, thank you. (This used to be commit 86d440a88c948727bfcfedc694c52c58f9687d8b) --- source3/smbd/reply.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 00a0ce3c4a..f9c0695a39 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1001,7 +1001,9 @@ 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 */ - sess_vuid = register_vuid(uid,gid,user,sesssetup_user,domain,guest); + 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); SSVAL(outbuf,smb_uid,sess_vuid); SSVAL(inbuf,smb_uid,sess_vuid); -- cgit