Hard-code sudoers.so instead of using SUDOERS_PLUGIN since libtool

appears to always install a shared object with the .so suffix.
This commit is contained in:
Todd C. Miller
2010-03-18 12:02:05 -04:00
parent ba9d2f5bb6
commit 5be1b80169
4 changed files with 1 additions and 12 deletions

View File

@@ -61,7 +61,7 @@ sudo_read_conf(const char *conf_file)
/* Default values */
info = emalloc(sizeof(*info));
info->symbol_name = "sudoers_policy";
info->path = SUDOERS_PLUGIN;
info->path = "sudoers.so";
info->prev = info;
info->next = NULL;
tq_append(&pil, info);