Changeset 39734 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 10, 2012 9:11:00 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/pam/pam_vbox.cpp
r39673 r39734 28 28 #endif 29 29 30 #ifdef RT_OS_SOLARIS31 # include <security/pam_appl.h>32 #endif33 #include <security/pam_modules.h>34 30 #include <security/pam_appl.h> 35 31 #ifdef RT_OS_LINUX … … 464 460 rc = VERR_INVALID_PARAMETER; 465 461 } 466 } 467 } 468 469 pam_vbox_log(hPAM, "pam_vbox_read_prop: read key \"%s\"=\"%s\" with rc=%Rrc\n", 470 pszKey, pszValue, rc); 462 463 if (RT_SUCCESS(rc)) 464 pam_vbox_log(hPAM, "pam_vbox_read_prop: read key \"%s\"=\"%s\"\n", 465 pszKey, pszValue); 466 } 467 } 468 469 pam_vbox_log(hPAM, "pam_vbox_read_prop: read key \"%s\" with rc=%Rrc\n", 470 pszKey, rc); 471 471 return rc; 472 472 } … … 530 530 } 531 531 #endif 532 533 532 534 533 /**
Note:
See TracChangeset
for help on using the changeset viewer.