From 0f581e4af943a7e5dfd71d1c308ac668f287aed3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 10 May 2004 11:23:50 +0000 Subject: r623: setUserInfo level 24 (password set) now works in the SAMR server. This includes all of the password complexity, password history and other password restrictions. (This used to be commit cb070b9084d95cf5178edbef951b75eab62b7220) --- source4/ntvfs/ipc/vfs_ipc.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/ntvfs/ipc') diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c index cf1d21bf33..1c02e8fadc 100644 --- a/source4/ntvfs/ipc/vfs_ipc.c +++ b/source4/ntvfs/ipc/vfs_ipc.c @@ -252,6 +252,11 @@ static NTSTATUS ipc_open_generic(struct request_context *req, const char *fname, *ps = p; + /* tell the RPC layer the transport session key */ + if (req->user_ctx->vuser) { + dcesrv_set_session_key(p->dce_conn, req->user_ctx->vuser->session_key); + } + return NT_STATUS_OK; } -- cgit