From: Michael Adam Date: Thu, 10 Feb 2011 10:04:19 +0000 (+0100) Subject: Revert "libwbclient: remove wbcRemoveGidMapping() - not implemented any more" X-Git-Tag: tevent-0.9.11~775 X-Git-Url: http://git.samba.org/samba.git/?p=nivanova%2Fsamba-autobuild%2F.git;a=commitdiff_plain;h=75b2a2f999ccf3983d815a4da8e161aa67c9f8a0 Revert "libwbclient: remove wbcRemoveGidMapping() - not implemented any more" This reverts commit 393c866c517636e94b48ca6030a57b712892d568. Undo the library version bump. --- diff --git a/nsswitch/libwbclient/wbc_idmap.c b/nsswitch/libwbclient/wbc_idmap.c index d9311c4e07a..0c5210ae54e 100644 --- a/nsswitch/libwbclient/wbc_idmap.c +++ b/nsswitch/libwbclient/wbc_idmap.c @@ -267,6 +267,12 @@ wbcErr wbcAllocateGid(gid_t *pgid) return wbc_status; } +/* Remove a group id mapping - not implemented any more */ +wbcErr wbcRemoveGidMapping(gid_t gid, const struct wbcDomainSid *sid) +{ + return WBC_ERR_NOT_IMPLEMENTED; +} + /* Set the highwater mark for allocated uids - not implemented any more */ wbcErr wbcSetUidHwm(uid_t uid_hwm) { diff --git a/nsswitch/libwbclient/wbclient.h b/nsswitch/libwbclient/wbclient.h index 96d6e687f5d..aca9cebe992 100644 --- a/nsswitch/libwbclient/wbclient.h +++ b/nsswitch/libwbclient/wbclient.h @@ -786,6 +786,16 @@ wbcErr wbcAllocateUid(uid_t *puid); **/ wbcErr wbcAllocateGid(gid_t *pgid); +/** + * @brief Remove a group id mapping + * + * @param gid Gid of the mapping to remove. + * @param *sid Pointer to the sid of the mapping to remove. + * + * @return #wbcErr + **/ +wbcErr wbcRemoveGidMapping(gid_t gid, const struct wbcDomainSid *sid); + /** * @brief Set the highwater mark for allocated uids. *