diff options
author | Michael Adam <obnox@samba.org> | 2011-01-27 21:54:25 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-01-27 21:56:11 +0100 |
commit | 1ed5961df2da73b61666a4565d0633e34f72d04d (patch) | |
tree | f5c3fd11f8af0aee0cdbe56c2e5a4bf74308f3da /nsswitch | |
parent | 52e1be2139d370bf0ce99371bc9ab73db41c6236 (diff) | |
download | samba-1ed5961df2da73b61666a4565d0633e34f72d04d.tar.gz samba-1ed5961df2da73b61666a4565d0633e34f72d04d.tar.bz2 samba-1ed5961df2da73b61666a4565d0633e34f72d04d.zip |
libwbclient: remove wbcRemoveUidMapping() - not implemented any more
Diffstat (limited to 'nsswitch')
-rw-r--r-- | nsswitch/libwbclient/wbc_idmap.c | 6 | ||||
-rw-r--r-- | nsswitch/libwbclient/wbclient.h | 10 |
2 files changed, 0 insertions, 16 deletions
diff --git a/nsswitch/libwbclient/wbc_idmap.c b/nsswitch/libwbclient/wbc_idmap.c index f75c0dcca1..0c5210ae54 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; } -/* Remove a user id mapping - not implemented any more */ -wbcErr wbcRemoveUidMapping(uid_t uid, const struct wbcDomainSid *sid) -{ - return WBC_ERR_NOT_IMPLEMENTED; -} - /* Remove a group id mapping - not implemented any more */ wbcErr wbcRemoveGidMapping(gid_t gid, const struct wbcDomainSid *sid) { diff --git a/nsswitch/libwbclient/wbclient.h b/nsswitch/libwbclient/wbclient.h index d7956b4305..aca9cebe99 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 Remove a user id mapping - * - * @param uid Uid of the mapping to remove. - * @param *sid Pointer to the sid of the mapping to remove. - * - * @return #wbcErr - **/ -wbcErr wbcRemoveUidMapping(uid_t uid, const struct wbcDomainSid *sid); - -/** * @brief Remove a group id mapping * * @param gid Gid of the mapping to remove. |