1PAM_INFO(3) Linux-PAM Manual PAM_INFO(3)
2
3
4
6 pam_info, pam_vinfo - display messages to the user
7
9 #include <security/pam_ext.h>
10
11 int pam_info(pam_handle_t *pamh, const char *fmt, ...);
12
13 int pam_vinfo(pam_handle_t *pamh, const char *fmt, va_list args);
14
16 The pam_info function prints messages through the conversation function
17 to the user.
18
19 The pam_vinfo function performs the same task as pam_info() with the
20 difference that it takes a set of arguments which have been obtained
21 using the stdarg(3) variable argument list macros.
22
24 PAM_BUF_ERR
25 Memory buffer error.
26
27 PAM_CONV_ERR
28 Conversation failure.
29
30 PAM_SUCCESS
31 Transaction was successful created.
32
33 PAM_SYSTEM_ERR
34 System error.
35
37 pam(8)
38
40 The pam_info and pam_vinfo functions are Linux-PAM extensions.
41
42
43
44Linux-PAM Manual 06/27/2006 PAM_INFO(3)