diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/pam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/pam.c b/src/ngircd/pam.c index e6d25bc5..0d4f27f0 100644 --- a/src/ngircd/pam.c +++ b/src/ngircd/pam.c @@ -111,7 +111,7 @@ PAM_Authenticate(CLIENT *Client) { pam_set_item(pam, PAM_RUSER, Client_User(Client)); pam_set_item(pam, PAM_RHOST, Client_Hostname(Client)); -#ifdef HAVE_PAM_FAIL_DELAY +#if defined(HAVE_PAM_FAIL_DELAY) && !defined(NO_PAM_FAIL_DELAY) pam_fail_delay(pam, 0); #endif |