Changeset 480 for trunk/server/nsswitch/libwbclient/wbc_pam.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_pam.c
r414 r480 464 464 } 465 465 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 } 469 471 if (response.data.auth.nt_status != 0) { 470 472 if (error) { … … 514 516 /* Send request */ 515 517 516 wbc_status = wbcRequestResponse(WINBINDD_CHECK_MACHACC, 517 &request, 518 &response); 518 wbc_status = wbcRequestResponsePriv(WINBINDD_CHECK_MACHACC, 519 &request, &response); 519 520 if (response.data.auth.nt_status != 0) { 520 521 if (error) { … … 552 553 /* Send request */ 553 554 554 wbc_status = wbcRequestResponse(WINBINDD_CHANGE_MACHACC, 555 &request, 556 &response); 555 wbc_status = wbcRequestResponsePriv(WINBINDD_CHANGE_MACHACC, 556 &request, &response); 557 557 if (response.data.auth.nt_status != 0) { 558 558 if (error) {
Note:
See TracChangeset
for help on using the changeset viewer.