diff options
author | des <des@FreeBSD.org> | 2003-02-08 20:18:25 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-02-08 20:18:25 +0000 |
commit | e386e297defab77aae97e35daddceef111b99beb (patch) | |
tree | e1fa8b8163299a85fafe8cdc868003e89fe47220 /contrib/openpam/lib/pam_get_authtok.c | |
parent | 7e5dbec27ad3be108f9ad9dab580166d43fcfcc0 (diff) | |
parent | 08e4475303c898401b648428de379ac49d83aa72 (diff) | |
download | FreeBSD-src-e386e297defab77aae97e35daddceef111b99beb.zip FreeBSD-src-e386e297defab77aae97e35daddceef111b99beb.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r110556,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/openpam/lib/pam_get_authtok.c')
-rw-r--r-- | contrib/openpam/lib/pam_get_authtok.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/openpam/lib/pam_get_authtok.c b/contrib/openpam/lib/pam_get_authtok.c index 896f059..c1ecb3c 100644 --- a/contrib/openpam/lib/pam_get_authtok.c +++ b/contrib/openpam/lib/pam_get_authtok.c @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/lib/pam_get_authtok.c#20 $ + * $P4: //depot/projects/openpam/lib/pam_get_authtok.c#21 $ */ #include <sys/param.h> @@ -124,7 +124,8 @@ pam_get_authtok(pam_handle_t *pamh, free(resp); if (r != PAM_SUCCESS) RETURNC(r); - RETURNC(pam_get_item(pamh, item, (const void **)authtok)); + r = pam_get_item(pamh, item, (const void **)authtok); + RETURNC(r); } /* |