lib/winbind_util: Remove winbind_[gu]id_to_sid
authorChristof Schmitt <cs@samba.org>
Tue, 5 Mar 2019 18:52:38 +0000 (11:52 -0700)
committerJeremy Allison <jra@samba.org>
Wed, 6 Mar 2019 00:50:15 +0000 (00:50 +0000)
Commit c906153cc7 removed these functions, now also remove them for the
--without-winbind case.

Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/lib/winbind_util.c

index e3fb594091a979c97602e58b7712b1b7f22552bc..d8c567175a86c6f0a2f0b0b68a04bd0f488f39b9 100644 (file)
@@ -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)