libwbclient: unimplement wbcSetUidHwm()
authorMichael Adam <obnox@samba.org>
Thu, 22 Jan 2009 12:37:11 +0000 (13:37 +0100)
committerMichael Adam <obnox@samba.org>
Sat, 14 Aug 2010 00:10:31 +0000 (02:10 +0200)
Michael

nsswitch/libwbclient/wbc_idmap.c

index a125b04d7d1e8296d375550bc8fc1446bd0c4e28..dc9bf3636941fe1ad9b5dc918b8e8e527d1df33f 100644 (file)
@@ -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. */