Make sshpam_password_change_required static.

sshpam_password_change_required is only used in auth-pam.c, so make it
static to prevent a mising prototype warning.
This commit is contained in:
Ruben Kerkhof 2020-01-20 12:13:26 +01:00 committed by Darren Tucker
parent 5a9b9c8285
commit 6089abf715
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ sshpam_chauthtok_ruid(pam_handle_t *pamh, int flags)
# define pam_chauthtok(a,b) (sshpam_chauthtok_ruid((a), (b)))
#endif
void
static void
sshpam_password_change_required(int reqd)
{
extern struct sshauthopt *auth_opts;