From e09a269bcc76be2101a285c0466f7fffa74366ac Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 22 Jan 2009 13:37:11 +0100 Subject: libwbclient: unimplement wbcSetUidHwm() Michael --- nsswitch/libwbclient/wbc_idmap.c | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) (limited to 'nsswitch/libwbclient/wbc_idmap.c') diff --git a/nsswitch/libwbclient/wbc_idmap.c b/nsswitch/libwbclient/wbc_idmap.c index a125b04d7d..dc9bf36369 100644 --- a/nsswitch/libwbclient/wbc_idmap.c +++ b/nsswitch/libwbclient/wbc_idmap.c @@ -419,29 +419,10 @@ wbcErr wbcRemoveGidMapping(gid_t gid, const struct wbcDomainSid *sid) return wbc_status; } -/* Set the highwater mark for allocated uids. */ +/* Set the highwater mark for allocated uids - not implemented any more */ wbcErr wbcSetUidHwm(uid_t uid_hwm) { - struct winbindd_request request; - struct winbindd_response response; - wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE; - - /* Initialise request */ - - ZERO_STRUCT(request); - ZERO_STRUCT(response); - - /* Make request */ - - request.data.dual_idmapset.id = uid_hwm; - request.data.dual_idmapset.type = _ID_TYPE_UID; - - wbc_status = wbcRequestResponsePriv(WINBINDD_SET_HWM, - &request, &response); - BAIL_ON_WBC_ERROR(wbc_status); - - done: - return wbc_status; + return WBC_ERR_NOT_IMPLEMENTED; } /* Set the highwater mark for allocated gids. */ -- cgit