summaryrefslogtreecommitdiff
path: root/nsswitch/libwbclient
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-01-27 21:54:25 +0100
committerMichael Adam <obnox@samba.org>2011-01-27 21:55:42 +0100
commit52e1be2139d370bf0ce99371bc9ab73db41c6236 (patch)
tree5117881b781042eff727c23d8ff6365d3994b1e6 /nsswitch/libwbclient
parent25a0dc44f7e180d96dcccb8701e9817ecfd54955 (diff)
downloadsamba-52e1be2139d370bf0ce99371bc9ab73db41c6236.tar.gz
samba-52e1be2139d370bf0ce99371bc9ab73db41c6236.tar.bz2
samba-52e1be2139d370bf0ce99371bc9ab73db41c6236.zip
libwbclient: remove wbcSetGidMapping() - not implemented any more
Diffstat (limited to 'nsswitch/libwbclient')
-rw-r--r--nsswitch/libwbclient/wbc_idmap.c6
-rw-r--r--nsswitch/libwbclient/wbclient.h10
2 files changed, 0 insertions, 16 deletions
diff --git a/nsswitch/libwbclient/wbc_idmap.c b/nsswitch/libwbclient/wbc_idmap.c
index 06320472ae..f75c0dcca1 100644
--- a/nsswitch/libwbclient/wbc_idmap.c
+++ b/nsswitch/libwbclient/wbc_idmap.c
@@ -267,12 +267,6 @@ wbcErr wbcAllocateGid(gid_t *pgid)
return wbc_status;
}
-/* Set a group id mapping - not implemented any more */
-wbcErr wbcSetGidMapping(gid_t gid, const struct wbcDomainSid *sid)
-{
- return WBC_ERR_NOT_IMPLEMENTED;
-}
-
/* Remove a user id mapping - not implemented any more */
wbcErr wbcRemoveUidMapping(uid_t uid, const struct wbcDomainSid *sid)
{
diff --git a/nsswitch/libwbclient/wbclient.h b/nsswitch/libwbclient/wbclient.h
index 9ead457310..d7956b4305 100644
--- a/nsswitch/libwbclient/wbclient.h
+++ b/nsswitch/libwbclient/wbclient.h
@@ -787,16 +787,6 @@ wbcErr wbcAllocateUid(uid_t *puid);
wbcErr wbcAllocateGid(gid_t *pgid);
/**
- * @brief Set a group id mapping
- *
- * @param gid Gid of the desired mapping.
- * @param *sid Pointer to the sid of the diresired mapping.
- *
- * @return #wbcErr
- **/
-wbcErr wbcSetGidMapping(gid_t gid, const struct wbcDomainSid *sid);
-
-/**
* @brief Remove a user id mapping
*
* @param uid Uid of the mapping to remove.