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_user.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_user.c')
-rw-r--r-- | contrib/openpam/lib/pam_get_user.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/openpam/lib/pam_get_user.c b/contrib/openpam/lib/pam_get_user.c index f35a887..5681c53 100644 --- a/contrib/openpam/lib/pam_get_user.c +++ b/contrib/openpam/lib/pam_get_user.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_user.c#13 $ + * $P4: //depot/projects/openpam/lib/pam_get_user.c#14 $ */ #include <sys/param.h> @@ -78,7 +78,8 @@ pam_get_user(pam_handle_t *pamh, free(resp); if (r != PAM_SUCCESS) RETURNC(r); - RETURNC(pam_get_item(pamh, PAM_USER, (const void **)user)); + r = pam_get_item(pamh, PAM_USER, (const void **)user); + RETURNC(r); } /* |