diff options
author | Tomas Mraz <tmraz@fedoraproject.org> | 2018-11-27 16:11:03 +0100 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2018-11-27 16:11:03 +0100 |
commit | d8d11db2cef65da5d2afa7acf21aa9c8cd88abed (patch) | |
tree | 5288f8d4db00a8b45bc98c510a4322717e0d676a /modules/pam_unix/passverify.h | |
parent | 86eed7ca01864b9fd17099e57f10f2b9b6b568a1 (diff) | |
download | pam-d8d11db2cef65da5d2afa7acf21aa9c8cd88abed.tar.gz pam-d8d11db2cef65da5d2afa7acf21aa9c8cd88abed.tar.bz2 pam-d8d11db2cef65da5d2afa7acf21aa9c8cd88abed.zip |
pam_unix: Use pam_syslog instead of helper_log_err.
* modules/pam_unix/passverify.c (verify_pwd_hash): Add pamh argument via
PAMH_ARG_DECL. Call pam_syslog() instead of helper_log_err().
* modules/pam_unix/passverify.h: Adjust the declaration of verify_pwd_hash().
* modules/pam_unix/support.c (_unix_verify_password): Add the pamh argument
to verify_pwd_hash() call.
Diffstat (limited to 'modules/pam_unix/passverify.h')
-rw-r--r-- | modules/pam_unix/passverify.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pam_unix/passverify.h b/modules/pam_unix/passverify.h index 086c28ac..e9a88fbf 100644 --- a/modules/pam_unix/passverify.h +++ b/modules/pam_unix/passverify.h @@ -13,9 +13,6 @@ #define OLD_PASSWORDS_FILE "/etc/security/opasswd" int -verify_pwd_hash(const char *p, char *hash, unsigned int nullok); - -int is_pwd_shadowed(const struct passwd *pwd); char * @@ -65,6 +62,9 @@ read_passwords(int fd, int npass, char **passwords); #define PAMH_ARG(...) pamh, __VA_ARGS__ #endif +PAMH_ARG_DECL(int verify_pwd_hash, + const char *p, char *hash, unsigned int nullok); + PAMH_ARG_DECL(char * create_password_hash, const char *password, unsigned long long ctrl, int rounds); |