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:
parent
5a9b9c8285
commit
6089abf715
|
@ -300,7 +300,7 @@ sshpam_chauthtok_ruid(pam_handle_t *pamh, int flags)
|
||||||
# define pam_chauthtok(a,b) (sshpam_chauthtok_ruid((a), (b)))
|
# define pam_chauthtok(a,b) (sshpam_chauthtok_ruid((a), (b)))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
static void
|
||||||
sshpam_password_change_required(int reqd)
|
sshpam_password_change_required(int reqd)
|
||||||
{
|
{
|
||||||
extern struct sshauthopt *auth_opts;
|
extern struct sshauthopt *auth_opts;
|
||||||
|
|
Loading…
Reference in New Issue