aboutsummaryrefslogtreecommitdiff
path: root/libpam
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@stoeckmann.org>2024-01-05 22:44:00 +0100
committerDmitry V. Levin <ldv@strace.io>2024-01-05 21:44:00 +0000
commit387940a856bac59fb77d13572b504bf51cb1ed3b (patch)
tree5035e778f8fd21448d32fed50396e21138d757ea /libpam
parentf19cd01ad56306e05145ff51fa392163405b8516 (diff)
downloadpam-387940a856bac59fb77d13572b504bf51cb1ed3b.tar.gz
pam-387940a856bac59fb77d13572b504bf51cb1ed3b.tar.bz2
pam-387940a856bac59fb77d13572b504bf51cb1ed3b.zip
libpam: use correct function definition
The declaration uses static keyword, the definition does not. Fix the definition, because the function is only used in this file. Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Diffstat (limited to 'libpam')
-rw-r--r--libpam/pam_handlers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpam/pam_handlers.c b/libpam/pam_handlers.c
index 6c3a8ba7..88e12253 100644
--- a/libpam/pam_handlers.c
+++ b/libpam/pam_handlers.c
@@ -947,10 +947,10 @@ _pam_load_module(pam_handle_t *pamh, const char *mod_path, int handler_type)
return success == PAM_SUCCESS ? mod : NULL;
}
-int _pam_add_handler(pam_handle_t *pamh
- , int handler_type, int other, int stack_level, int type
- , int *actions, const char *mod_path
- , int argc, char **argv, size_t argvlen)
+static int _pam_add_handler(pam_handle_t *pamh
+ , int handler_type, int other, int stack_level
+ , int type, int *actions, const char *mod_path
+ , int argc, char **argv, size_t argvlen)
{
struct loaded_module *mod = NULL;
struct handler **handler_p;