diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/pam_ftp/pam_ftp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/pam_ftp/pam_ftp.c b/modules/pam_ftp/pam_ftp.c index 552858ba..49f59bc8 100644 --- a/modules/pam_ftp/pam_ftp.c +++ b/modules/pam_ftp/pam_ftp.c @@ -174,8 +174,7 @@ pam_sm_authenticate (pam_handle_t *pamh, int flags UNUSED, GUEST_LOGIN_PROMPT); if (retval != PAM_SUCCESS) { - if (resp != NULL) - _pam_drop (resp); + _pam_drop (resp); return ((retval == PAM_CONV_AGAIN) ? PAM_INCOMPLETE:PAM_AUTHINFO_UNAVAIL); } @@ -211,9 +210,8 @@ pam_sm_authenticate (pam_handle_t *pamh, int flags UNUSED, retval = PAM_AUTH_ERR; } - if (resp) { /* clean up */ - _pam_drop(resp); - } + /* clean up */ + _pam_drop(resp); /* success or failure */ |