diff options
author | ikerexxe <ipedrosa@redhat.com> | 2020-11-02 11:19:46 +0100 |
---|---|---|
committer | Tomáš Mráz <tmraz@redhat.com> | 2020-11-03 13:20:32 +0100 |
commit | 803dd9a5fd9cca9d51d4263ae325854ffc34c3ba (patch) | |
tree | da6896d7d3176668592c51fb6296d9c7d84ff8e3 /libpam/pam_dispatch.c | |
parent | 709e37b7e131d35b0ec30d31f858bc6917dd2b2e (diff) | |
download | pam-803dd9a5fd9cca9d51d4263ae325854ffc34c3ba.tar.gz pam-803dd9a5fd9cca9d51d4263ae325854ffc34c3ba.tar.bz2 pam-803dd9a5fd9cca9d51d4263ae325854ffc34c3ba.zip |
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.c | 1 |
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); |