summaryrefslogtreecommitdiffstats
path: root/contrib/openpam/lib/pam_authenticate.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2002-12-16 15:28:05 +0000
committerdes <des@FreeBSD.org>2002-12-16 15:28:05 +0000
commit9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f (patch)
treeecbdd15371b5e36058a6a262d89a55baf407a91c /contrib/openpam/lib/pam_authenticate.c
parent7966ff24b5238d36ecd0fce943ba5db101374b4e (diff)
parent18c136aadd659f7b141653f3f614063e70bc59eb (diff)
downloadFreeBSD-src-9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f.zip
FreeBSD-src-9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f.tar.gz
This commit was generated by cvs2svn to compensate for changes in r107937,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/openpam/lib/pam_authenticate.c')
-rw-r--r--contrib/openpam/lib/pam_authenticate.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/openpam/lib/pam_authenticate.c b/contrib/openpam/lib/pam_authenticate.c
index 6cc2563..f2884f7 100644
--- a/contrib/openpam/lib/pam_authenticate.c
+++ b/contrib/openpam/lib/pam_authenticate.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_authenticate.c#11 $
+ * $P4: //depot/projects/openpam/lib/pam_authenticate.c#12 $
*/
#include <sys/param.h>
@@ -53,11 +53,12 @@ pam_authenticate(pam_handle_t *pamh,
{
int pam_err;
+ ENTER();
if (flags & ~(PAM_SILENT|PAM_DISALLOW_NULL_AUTHTOK))
- return (PAM_SYMBOL_ERR);
+ RETURNC(PAM_SYMBOL_ERR);
pam_err = openpam_dispatch(pamh, PAM_SM_AUTHENTICATE, flags);
pam_set_item(pamh, PAM_AUTHTOK, NULL);
- return (pam_err);
+ RETURNC(pam_err);
}
/*
OpenPOWER on IntegriCloud