From 73bac6f9af66f3914f049621ce3caae528e2730f Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Tue, 5 Mar 2019 11:52:38 -0700 Subject: [PATCH] lib/winbind_util: Remove winbind_[gu]id_to_sid Commit c906153cc7 removed these functions, now also remove them for the --without-winbind case. Signed-off-by: Christof Schmitt Reviewed-by: Jeremy Allison --- source3/lib/winbind_util.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/source3/lib/winbind_util.c b/source3/lib/winbind_util.c index e3fb594091a..d8c567175a8 100644 --- a/source3/lib/winbind_util.c +++ b/source3/lib/winbind_util.c @@ -346,13 +346,6 @@ bool winbind_sid_to_uid(uid_t *puid, const struct dom_sid *sid) return false; } -/* Call winbindd to convert uid to sid */ - -bool winbind_uid_to_sid(struct dom_sid *sid, uid_t uid) -{ - return false; -} - /* Call winbindd to convert SID to gid */ bool winbind_sid_to_gid(gid_t *pgid, const struct dom_sid *sid) @@ -360,13 +353,6 @@ bool winbind_sid_to_gid(gid_t *pgid, const struct dom_sid *sid) return false; } -/* Call winbindd to convert gid to sid */ - -bool winbind_gid_to_sid(struct dom_sid *sid, gid_t gid) -{ - return false; -} - /* Check for a trusted domain */ wbcErr wb_is_trusted_domain(const char *domain) -- 2.47.2