r26296: Store loadparm context in DCE/RPC server context.
[jelmer/samba4-debian.git] / source / rpc_server / unixinfo / dcesrv_unixinfo.c
index e5803b5f00286675306c192d0adf0efa017fba80..2c08d501d16de8dc358bab62523d2e247c66f0e5 100644 (file)
@@ -7,7 +7,7 @@
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
@@ -16,8 +16,7 @@
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "includes.h"
@@ -27,6 +26,7 @@
 #include "lib/events/events.h"
 #include "dsdb/samdb/samdb.h"
 #include "system/passwd.h"
+#include "param/param.h"
 
 static NTSTATUS dcesrv_unixinfo_SidToUid(struct dcesrv_call_state *dce_call,
                                  TALLOC_CTX *mem_ctx,
@@ -36,7 +36,7 @@ static NTSTATUS dcesrv_unixinfo_SidToUid(struct dcesrv_call_state *dce_call,
        struct sidmap_context *sidmap;
        uid_t uid;
 
-       sidmap = sidmap_open(mem_ctx);
+       sidmap = sidmap_open(mem_ctx, dce_call->conn->dce_ctx->lp_ctx);
        if (sidmap == NULL) {
                DEBUG(10, ("sidmap_open failed\n"));
                return NT_STATUS_NO_MEMORY;
@@ -56,7 +56,7 @@ static NTSTATUS dcesrv_unixinfo_UidToSid(struct dcesrv_call_state *dce_call,
        struct sidmap_context *sidmap;
        uid_t uid;
 
-       sidmap = sidmap_open(mem_ctx);
+       sidmap = sidmap_open(mem_ctx, dce_call->conn->dce_ctx->lp_ctx);
        if (sidmap == NULL) {
                DEBUG(10, ("sidmap_open failed\n"));
                return NT_STATUS_NO_MEMORY;
@@ -80,7 +80,7 @@ static NTSTATUS dcesrv_unixinfo_SidToGid(struct dcesrv_call_state *dce_call,
        struct sidmap_context *sidmap;
        gid_t gid;
 
-       sidmap = sidmap_open(mem_ctx);
+       sidmap = sidmap_open(mem_ctx, dce_call->conn->dce_ctx->lp_ctx);
        if (sidmap == NULL) {
                DEBUG(10, ("sidmap_open failed\n"));
                return NT_STATUS_NO_MEMORY;
@@ -100,7 +100,7 @@ static NTSTATUS dcesrv_unixinfo_GidToSid(struct dcesrv_call_state *dce_call,
        struct sidmap_context *sidmap;
        gid_t gid;
 
-       sidmap = sidmap_open(mem_ctx);
+       sidmap = sidmap_open(mem_ctx, dce_call->conn->dce_ctx->lp_ctx);
        if (sidmap == NULL) {
                DEBUG(10, ("sidmap_open failed\n"));
                return NT_STATUS_NO_MEMORY;