diff options
author | des <des@FreeBSD.org> | 2002-04-15 01:26:36 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-04-15 01:26:36 +0000 |
commit | 468b361c5c2ce5af7e2a44ff73b3cfa5070dc664 (patch) | |
tree | b3014e88891f4c3c0c8929c8ebd5a3fc7878d3d2 /contrib | |
parent | e4c18be72a64b1f2c1ae1689ccf9ff2edbba4588 (diff) | |
parent | c9b90a6e8f5e826f77a92b42506fd554ca3254d2 (diff) | |
download | FreeBSD-src-468b361c5c2ce5af7e2a44ff73b3cfa5070dc664.zip FreeBSD-src-468b361c5c2ce5af7e2a44ff73b3cfa5070dc664.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r94706,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/openpam/lib/pam_get_authtok.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/openpam/lib/pam_get_authtok.c b/contrib/openpam/lib/pam_get_authtok.c index 8dd8238..5719d69 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#15 $ + * $P4: //depot/projects/openpam/lib/pam_get_authtok.c#16 $ */ #include <sys/param.h> @@ -120,11 +120,11 @@ pam_get_authtok(pam_handle_t *pamh, } if (resp == NULL) return (PAM_TRY_AGAIN); - r = pam_set_item(pamh, pitem, resp); + r = pam_set_item(pamh, item, resp); free(resp); if (r != PAM_SUCCESS) return (r); - return (pam_get_item(pamh, pitem, (const void **)authtok)); + return (pam_get_item(pamh, item, (const void **)authtok)); } /* |