diff options
Diffstat (limited to 'check/check.h')
| -rw-r--r-- | check/check.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/check/check.h b/check/check.h index 6f2c9fc..e8dac77 100644 --- a/check/check.h +++ b/check/check.h @@ -2,12 +2,17 @@ #define PRIVEXEC_CHECK_H #ifndef CONFIG_PATH -#define CONFIG_PATH "/etc/privexec.conf" +#define CONFIG_PATH "/etc/privexec.conf" +#endif + +#ifndef PAM_SERVICE_NAME +#define PAM_SERVICE_NAME "privexec" #endif enum permission { UNKNOWN, AUTHORIZED, AUTHENTICATE, DENIED }; void fatal(int include_errno, char *fmt, ...); enum permission get_permission(const char *user, const char *group, const char *cmd); +int authenticate(const char *user); #endif |
