mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
pam: Fix rhost string length check
This commit is contained in:
@ -481,7 +481,7 @@ PAM_EXTERN int pam_sm_authenticate(pam_handle_t *pamh, int flags, int argc,
|
|||||||
* "localhost" if the host is local.
|
* "localhost" if the host is local.
|
||||||
* We want to not run for known remote hosts */
|
* We want to not run for known remote hosts */
|
||||||
if (rhost != NULL &&
|
if (rhost != NULL &&
|
||||||
rhost != '\0' &&
|
*rhost != '\0' &&
|
||||||
strcmp (rhost, "localhost") != 0) {
|
strcmp (rhost, "localhost") != 0) {
|
||||||
return PAM_AUTHINFO_UNAVAIL;
|
return PAM_AUTHINFO_UNAVAIL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user