summaryrefslogtreecommitdiff
path: root/pam_cap/test.c
blob: 5150ba536fb08f864251b53ef1b30cf621bbe5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <stdlib.h>
#include <security/pam_modules.h>

int main(int argc, char **argv)
{
    if (pam_sm_authenticate(NULL, 0, 0, NULL) != PAM_SUCCESS) {
	printf("failed to authenticate\n");
	exit(1);
    }
    exit(0);
}