2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

Make path_plugin_dir private to policy.c and add getter.

This commit is contained in:
Todd C. Miller
2023-08-13 17:05:00 -06:00
parent 217b7b46f3
commit 392f0d61cb
5 changed files with 21 additions and 10 deletions

View File

@@ -58,6 +58,7 @@ sudo_printf_t sudo_printf;
struct sudo_plugin_event * (*plugin_event_alloc)(void);
static const char *path_ldap_conf = _PATH_LDAP_CONF;
static const char *path_ldap_secret = _PATH_LDAP_SECRET;
static const char *path_plugin_dir = _PATH_SUDO_PLUGIN_DIR;
static const char *path_sudoers = _PATH_SUDOERS;
static bool session_opened;
int sudoedit_nfiles;
@@ -627,6 +628,13 @@ policy_sudoers_conf(void)
return &sudoers_conf;
}
/* Return the path to the sudo plugin directory. */
const char *
policy_path_plugin_dir(void)
{
return path_plugin_dir;
}
/* Return the path to ldap.conf file, which may be set in the plugin args. */
const char *
policy_path_ldap_conf(void)