Changeset 480 for trunk/server/nsswitch/libwbclient/wbc_idmap.c
- Timestamp:
- Aug 2, 2010, 8:16:45 PM (15 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 453,478
- Property svn:mergeinfo changed
-
trunk/server/nsswitch/libwbclient/wbc_idmap.c
r414 r480 224 224 /* Make request */ 225 225 226 wbc_status = wbcRequestResponse (WINBINDD_ALLOCATE_UID,227 &request, &response);226 wbc_status = wbcRequestResponsePriv(WINBINDD_ALLOCATE_UID, 227 &request, &response); 228 228 BAIL_ON_WBC_ERROR(wbc_status); 229 229 … … 254 254 /* Make request */ 255 255 256 wbc_status = wbcRequestResponse (WINBINDD_ALLOCATE_GID,257 &request, &response);256 wbc_status = wbcRequestResponsePriv(WINBINDD_ALLOCATE_GID, 257 &request, &response); 258 258 BAIL_ON_WBC_ERROR(wbc_status); 259 259 … … 300 300 wbcFreeMemory(sid_string); 301 301 302 wbc_status = wbcRequestResponse (WINBINDD_SET_MAPPING,303 &request, &response);302 wbc_status = wbcRequestResponsePriv(WINBINDD_SET_MAPPING, 303 &request, &response); 304 304 BAIL_ON_WBC_ERROR(wbc_status); 305 305 … … 337 337 wbcFreeMemory(sid_string); 338 338 339 wbc_status = wbcRequestResponse (WINBINDD_SET_MAPPING,340 &request, &response);339 wbc_status = wbcRequestResponsePriv(WINBINDD_SET_MAPPING, 340 &request, &response); 341 341 BAIL_ON_WBC_ERROR(wbc_status); 342 342 … … 374 374 wbcFreeMemory(sid_string); 375 375 376 wbc_status = wbcRequestResponse (WINBINDD_REMOVE_MAPPING,377 &request, &response);376 wbc_status = wbcRequestResponsePriv(WINBINDD_REMOVE_MAPPING, 377 &request, &response); 378 378 BAIL_ON_WBC_ERROR(wbc_status); 379 379 … … 411 411 wbcFreeMemory(sid_string); 412 412 413 wbc_status = wbcRequestResponse (WINBINDD_REMOVE_MAPPING,414 &request, &response);413 wbc_status = wbcRequestResponsePriv(WINBINDD_REMOVE_MAPPING, 414 &request, &response); 415 415 BAIL_ON_WBC_ERROR(wbc_status); 416 416 … … 436 436 request.data.dual_idmapset.type = _ID_TYPE_UID; 437 437 438 wbc_status = wbcRequestResponse (WINBINDD_SET_HWM,439 &request, &response);438 wbc_status = wbcRequestResponsePriv(WINBINDD_SET_HWM, 439 &request, &response); 440 440 BAIL_ON_WBC_ERROR(wbc_status); 441 441 … … 461 461 request.data.dual_idmapset.type = _ID_TYPE_GID; 462 462 463 wbc_status = wbcRequestResponse (WINBINDD_SET_HWM,464 &request, &response);465 BAIL_ON_WBC_ERROR(wbc_status); 466 467 done: 468 return wbc_status; 469 } 463 wbc_status = wbcRequestResponsePriv(WINBINDD_SET_HWM, 464 &request, &response); 465 BAIL_ON_WBC_ERROR(wbc_status); 466 467 done: 468 return wbc_status; 469 }
Note:
See TracChangeset
for help on using the changeset viewer.