from small one page howto to huge articles all in one place
poll results
Last additions:
May 25th. 2007:
April, 26th. 2006:
| You are here: manpages
PAM_MISC_SETENV
Section: Linux-PAM Manual (3) Updated: 04/01/2016 Index
Return to Main Contents
NAME
pam_misc_setenv - BSD like PAM environment variable setting
SYNOPSIS
#include <security/pam_misc.h>
-
int pam_misc_setenv(pam_handle_t *pamh, const char *name, const char *value, int readonly);
DESCRIPTION
This function performs a task equivalent to
pam_putenv(3), its syntax is, however, more like the BSD style function;
setenv(). The
name
and
value
are concatenated with an '=' to form a name=value and passed to
pam_putenv(). If, however, the PAM variable is already set, the replacement will only be applied if the last argument,
readonly, is zero.
SEE ALSO
pam_putenv(3),
pam(8)
STANDARDS
The
pam_misc_setenv
function is part of the
libpam_misc
Library and not defined in any standard.
Index
- NAME
-
- SYNOPSIS
-
- DESCRIPTION
-
- SEE ALSO
-
- STANDARDS
-
|