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_pam.c

    r414 r480  
    464464        }
    465465
    466         wbc_status = wbcRequestResponse(cmd,
    467                                         &request,
    468                                         &response);
     466        if (cmd == WINBINDD_PAM_AUTH_CRAP) {
     467                wbc_status = wbcRequestResponsePriv(cmd, &request, &response);
     468        } else {
     469                wbc_status = wbcRequestResponse(cmd, &request, &response);
     470        }
    469471        if (response.data.auth.nt_status != 0) {
    470472                if (error) {
     
    514516        /* Send request */
    515517
    516         wbc_status = wbcRequestResponse(WINBINDD_CHECK_MACHACC,
    517                                         &request,
    518                                         &response);
     518        wbc_status = wbcRequestResponsePriv(WINBINDD_CHECK_MACHACC,
     519                                            &request, &response);
    519520        if (response.data.auth.nt_status != 0) {
    520521                if (error) {
     
    552553        /* Send request */
    553554
    554         wbc_status = wbcRequestResponse(WINBINDD_CHANGE_MACHACC,
    555                                         &request,
    556                                         &response);
     555        wbc_status = wbcRequestResponsePriv(WINBINDD_CHANGE_MACHACC,
     556                                        &request, &response);
    557557        if (response.data.auth.nt_status != 0) {
    558558                if (error) {
Note: See TracChangeset for help on using the changeset viewer.