summaryrefslogblamecommitdiffstats
path: root/include/pamfail.h
blob: e102df227d6793ca6b5d43b7eb48397504e40cd2 (plain) (tree)
1
2
3
4
5
6





                                                                       















                                                 
/*
 * No copyright is claimed.  This code is in the public domain; do with
 * it what you wish.
 *
 * Written by Karel Zak <kzak@redhat.com>
 */
#ifndef UTIL_LINUX_PAMFAIL_H
#include <security/pam_appl.h>
#include <security/pam_misc.h>
#include "c.h"

static inline int
pam_fail_check(pam_handle_t *pamh, int retcode)
{
	if (retcode == PAM_SUCCESS)
		return 0;
	warnx("%s", pam_strerror(pamh, retcode));
	pam_end(pamh, retcode);
	return 1;
}

#endif /* UTIL_LINUX_PAMFAIL_H */