diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-01-17 14:49:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:43:39 -0500 |
commit | 64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6 (patch) | |
tree | 835cd8e0cd6facfda605ab5326741eb736db9066 /source4/rpc_server/unixinfo | |
parent | a35a071fc95823cea74fdd3cb1858df4d7104901 (diff) | |
download | samba-64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6.tar.gz samba-64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6.tar.bz2 samba-64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6.zip |
r20850: Prefix all server calls with dcesrv_
(This used to be commit 76c78b0339cd88c61a13745f7f4e037f400db21b)
Diffstat (limited to 'source4/rpc_server/unixinfo')
-rw-r--r-- | source4/rpc_server/unixinfo/dcesrv_unixinfo.c | 10 |
1 files changed, 5 insertions, 5 deletions
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) { |