diff options
author | Dmitry V. Levin <ldv@strace.io> | 2024-08-26 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2024-08-26 08:00:00 +0000 |
commit | 3f4b8cd77c8ceeb61ddbb82743deed6f111ec0ec (patch) | |
tree | 1fe6b38690b13b5c6b61fe43059f19a5de179f73 /modules/pam_group | |
parent | aca37d3400e31ef01f3f79b64dd8660d872aaf8f (diff) | |
download | pam-3f4b8cd77c8ceeb61ddbb82743deed6f111ec0ec.tar.gz pam-3f4b8cd77c8ceeb61ddbb82743deed6f111ec0ec.tar.bz2 pam-3f4b8cd77c8ceeb61ddbb82743deed6f111ec0ec.zip |
build: rename VENDOR_SCONFIGDIR config.h macro to VENDOR_SCONFIG_DIR
... for the same reason SCONFIGDIR config.h macro was renamed to
SCONFIG_DIR.
Diffstat (limited to 'modules/pam_group')
-rw-r--r-- | modules/pam_group/pam_group.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pam_group/pam_group.c b/modules/pam_group/pam_group.c index 82829847..21c04d73 100644 --- a/modules/pam_group/pam_group.c +++ b/modules/pam_group/pam_group.c @@ -25,8 +25,8 @@ #include <netdb.h> #define PAM_GROUP_CONF SCONFIG_DIR "/group.conf" -#ifdef VENDOR_SCONFIGDIR -# define VENDOR_PAM_GROUP_CONF VENDOR_SCONFIGDIR "/group.conf" +#ifdef VENDOR_SCONFIG_DIR +# define VENDOR_PAM_GROUP_CONF VENDOR_SCONFIG_DIR "/group.conf" #endif #define PAM_GROUP_BUFLEN 1000 #define FIELD_SEPARATOR ';' /* this is new as of .02 */ |