More code that inexplicably builds on one dev box but not on others.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@607 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2012-04-20 11:09:37 +00:00
parent fe17647fb8
commit 78ab63e094
2 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ try_dlopen(const char *modfn)
int check_module_file;
void *dlh;
openpam_get_feature(OPENPAM_CHECK_MODULE_FILE,
openpam_get_feature(OPENPAM_VERIFY_MODULE_FILE,
&check_module_file);
if (check_module_file &&
openpam_check_path_owner_perms(modfn) != 0)

View File

@ -76,7 +76,7 @@ openpam_get_feature(int feature, int *onoff)
* Disabling it allows the application to specify the path to
* the desired policy file directly.
*
* =OPENPAM_CHECK_POLICY_FILE:
* =OPENPAM_VERIFY_POLICY_FILE:
* Verify the ownership and permissions of the policy file
* and the path leading up to it.
* This feature is enabled by default.
@ -87,7 +87,7 @@ openpam_get_feature(int feature, int *onoff)
* Enabling it prevents the use of modules in non-standard
* locations.
*
* =OPENPAM_CHECK_MODULE_FILE:
* =OPENPAM_VERIFY_MODULE_FILE:
* Verify the ownership and permissions of each loadable
* module and the path leading up to it.
* This feature is enabled by default.