summaryrefslogtreecommitdiff
path: root/libpam/pam_dispatch.c
diff options
context:
space:
mode:
authorikerexxe <ipedrosa@redhat.com>2020-11-02 11:19:46 +0100
committerTomáš Mráz <tmraz@redhat.com>2020-11-03 13:20:32 +0100
commit803dd9a5fd9cca9d51d4263ae325854ffc34c3ba (patch)
treeda6896d7d3176668592c51fb6296d9c7d84ff8e3 /libpam/pam_dispatch.c
parent709e37b7e131d35b0ec30d31f858bc6917dd2b2e (diff)
pam_dispatch: fix unread store statement
libpam/pam_dispatch: remove store statement since the value is never read.
Diffstat (limited to 'libpam/pam_dispatch.c')
-rw-r--r--libpam/pam_dispatch.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libpam/pam_dispatch.c b/libpam/pam_dispatch.c
index cf632e8e..974104a2 100644
--- a/libpam/pam_dispatch.c
+++ b/libpam/pam_dispatch.c
@@ -424,7 +424,6 @@ int _pam_dispatch(pam_handle_t *pamh, int flags, int choice)
/* call the list of module functions */
pamh->choice = choice;
retval = _pam_dispatch_aux(pamh, flags, h, resumed, use_cached_chain);
- resumed = PAM_FALSE;
__PAM_TO_APP(pamh);