diff options
author | Iker Pedrosa <ipedrosa@redhat.com> | 2023-03-30 12:50:44 +0200 |
---|---|---|
committer | Iker Pedrosa <ipedrosa@redhat.com> | 2023-03-30 12:53:41 +0200 |
commit | 8db48b022bdf8cc37f85b2927639aad67cd54be5 (patch) | |
tree | c6bccbfa21860ae2bd60514bc7b4d6d90d558772 /modules/pam_timestamp | |
parent | fce804e6959b15552dfbd3cca35c997b57d41e4b (diff) | |
download | pam-8db48b022bdf8cc37f85b2927639aad67cd54be5.tar.gz pam-8db48b022bdf8cc37f85b2927639aad67cd54be5.tar.bz2 pam-8db48b022bdf8cc37f85b2927639aad67cd54be5.zip |
pam_timestamp: fix build failure
bcba17939e1b1a568cd4a764534cde74d37078cc started using pam_overwrite_n()
without providing the definition to this function, which causes a build
failure.
modules/pam_timestamp/hmac_openssl_wrapper.c: include pam_inline.h
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
Diffstat (limited to 'modules/pam_timestamp')
-rw-r--r-- | modules/pam_timestamp/hmac_openssl_wrapper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/pam_timestamp/hmac_openssl_wrapper.c b/modules/pam_timestamp/hmac_openssl_wrapper.c index df772d60..2549c1db 100644 --- a/modules/pam_timestamp/hmac_openssl_wrapper.c +++ b/modules/pam_timestamp/hmac_openssl_wrapper.c @@ -54,6 +54,7 @@ #include <security/pam_modutil.h> #include "hmac_openssl_wrapper.h" +#include "pam_inline.h" #define LOGIN_DEFS "/etc/login.defs" #define CRYPTO_KEY "HMAC_CRYPTO_ALGO" |