From 64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 17 Jan 2007 14:49:36 +0000 Subject: r20850: Prefix all server calls with dcesrv_ (This used to be commit 76c78b0339cd88c61a13745f7f4e037f400db21b) --- source4/rpc_server/unixinfo/dcesrv_unixinfo.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source4/rpc_server/unixinfo') diff --git a/source4/rpc_server/unixinfo/dcesrv_unixinfo.c b/source4/rpc_server/unixinfo/dcesrv_unixinfo.c index ab7a61c64e..e5803b5f00 100644 --- a/source4/rpc_server/unixinfo/dcesrv_unixinfo.c +++ b/source4/rpc_server/unixinfo/dcesrv_unixinfo.c @@ -28,7 +28,7 @@ #include "dsdb/samdb/samdb.h" #include "system/passwd.h" -static NTSTATUS unixinfo_SidToUid(struct dcesrv_call_state *dce_call, +static NTSTATUS dcesrv_unixinfo_SidToUid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct unixinfo_SidToUid *r) { @@ -49,7 +49,7 @@ static NTSTATUS unixinfo_SidToUid(struct dcesrv_call_state *dce_call, return NT_STATUS_OK; } -static NTSTATUS unixinfo_UidToSid(struct dcesrv_call_state *dce_call, +static NTSTATUS dcesrv_unixinfo_UidToSid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct unixinfo_UidToSid *r) { @@ -72,7 +72,7 @@ static NTSTATUS unixinfo_UidToSid(struct dcesrv_call_state *dce_call, return sidmap_uid_to_sid(sidmap, mem_ctx, uid, &r->out.sid); } -static NTSTATUS unixinfo_SidToGid(struct dcesrv_call_state *dce_call, +static NTSTATUS dcesrv_unixinfo_SidToGid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct unixinfo_SidToGid *r) { @@ -93,7 +93,7 @@ static NTSTATUS unixinfo_SidToGid(struct dcesrv_call_state *dce_call, return NT_STATUS_OK; } -static NTSTATUS unixinfo_GidToSid(struct dcesrv_call_state *dce_call, +static NTSTATUS dcesrv_unixinfo_GidToSid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct unixinfo_GidToSid *r) { @@ -116,7 +116,7 @@ static NTSTATUS unixinfo_GidToSid(struct dcesrv_call_state *dce_call, return sidmap_gid_to_sid(sidmap, mem_ctx, gid, &r->out.sid); } -static NTSTATUS unixinfo_GetPWUid(struct dcesrv_call_state *dce_call, +static NTSTATUS dcesrv_unixinfo_GetPWUid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct unixinfo_GetPWUid *r) { -- cgit