Ignore:
Timestamp:
Aug 2, 2010, 8:16:45 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: trunk update to 3.5.4

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/nsswitch/libwbclient/wbc_idmap.c

    r414 r480  
    224224        /* Make request */
    225225
    226         wbc_status = wbcRequestResponse(WINBINDD_ALLOCATE_UID,
    227                                            &request, &response);
     226        wbc_status = wbcRequestResponsePriv(WINBINDD_ALLOCATE_UID,
     227                                            &request, &response);
    228228        BAIL_ON_WBC_ERROR(wbc_status);
    229229
     
    254254        /* Make request */
    255255
    256         wbc_status = wbcRequestResponse(WINBINDD_ALLOCATE_GID,
    257                                            &request, &response);
     256        wbc_status = wbcRequestResponsePriv(WINBINDD_ALLOCATE_GID,
     257                                            &request, &response);
    258258        BAIL_ON_WBC_ERROR(wbc_status);
    259259
     
    300300        wbcFreeMemory(sid_string);
    301301
    302         wbc_status = wbcRequestResponse(WINBINDD_SET_MAPPING,
    303                                         &request, &response);
     302        wbc_status = wbcRequestResponsePriv(WINBINDD_SET_MAPPING,
     303                                            &request, &response);
    304304        BAIL_ON_WBC_ERROR(wbc_status);
    305305
     
    337337        wbcFreeMemory(sid_string);
    338338
    339         wbc_status = wbcRequestResponse(WINBINDD_SET_MAPPING,
    340                                         &request, &response);
     339        wbc_status = wbcRequestResponsePriv(WINBINDD_SET_MAPPING,
     340                                            &request, &response);
    341341        BAIL_ON_WBC_ERROR(wbc_status);
    342342
     
    374374        wbcFreeMemory(sid_string);
    375375
    376         wbc_status = wbcRequestResponse(WINBINDD_REMOVE_MAPPING,
    377                                         &request, &response);
     376        wbc_status = wbcRequestResponsePriv(WINBINDD_REMOVE_MAPPING,
     377                                            &request, &response);
    378378        BAIL_ON_WBC_ERROR(wbc_status);
    379379
     
    411411        wbcFreeMemory(sid_string);
    412412
    413         wbc_status = wbcRequestResponse(WINBINDD_REMOVE_MAPPING,
    414                                         &request, &response);
     413        wbc_status = wbcRequestResponsePriv(WINBINDD_REMOVE_MAPPING,
     414                                            &request, &response);
    415415        BAIL_ON_WBC_ERROR(wbc_status);
    416416
     
    436436        request.data.dual_idmapset.type = _ID_TYPE_UID;
    437437
    438         wbc_status = wbcRequestResponse(WINBINDD_SET_HWM,
    439                                         &request, &response);
     438        wbc_status = wbcRequestResponsePriv(WINBINDD_SET_HWM,
     439                                            &request, &response);
    440440        BAIL_ON_WBC_ERROR(wbc_status);
    441441
     
    461461        request.data.dual_idmapset.type = _ID_TYPE_GID;
    462462
    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.