From 86d70ae94425c34fcb7cc7791a6e54b1a47f21cc Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Wed, 22 Apr 2009 18:10:12 +0200 Subject: [PATCH] s4 idmap: Make the sid_to_xid and xid_to_sid calls static. Looking at the winbind interface, we should only be using the bulk conversion calls. --- source4/winbind/idmap.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/source4/winbind/idmap.c b/source4/winbind/idmap.c index 153b5c363ef..b37de8810b2 100644 --- a/source4/winbind/idmap.c +++ b/source4/winbind/idmap.c @@ -199,8 +199,10 @@ struct idmap_context *idmap_init(TALLOC_CTX *mem_ctx, * possible or some other NTSTATUS that is more descriptive on failure. */ -NTSTATUS idmap_xid_to_sid(struct idmap_context *idmap_ctx, TALLOC_CTX *mem_ctx, - const struct unixid *unixid, struct dom_sid **sid) +static NTSTATUS idmap_xid_to_sid(struct idmap_context *idmap_ctx, + TALLOC_CTX *mem_ctx, + const struct unixid *unixid, + struct dom_sid **sid) { int ret; NTSTATUS status = NT_STATUS_NONE_MAPPED; @@ -289,8 +291,10 @@ failed: * a trusted domain and idmap trusted only = true, NT_STATUS_NONE_MAPPED if the * mapping failed. */ -NTSTATUS idmap_sid_to_xid(struct idmap_context *idmap_ctx, TALLOC_CTX *mem_ctx, - const struct dom_sid *sid, struct unixid **unixid) +static NTSTATUS idmap_sid_to_xid(struct idmap_context *idmap_ctx, + TALLOC_CTX *mem_ctx, + const struct dom_sid *sid, + struct unixid **unixid) { int ret; NTSTATUS status = NT_STATUS_NONE_MAPPED; -- 2.34.1