PAM_CRED_PRELIM_CHECK is an XSSO typo. The correct name for the

constant is PAM_PRELIM_CHECK.

Sponsored by:	DARPA, NAI Labs


git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@36 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2002-02-06 16:02:13 +00:00
parent f8a6c31c31
commit c450908f60
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,9 @@ Errata in XSSO, chapter 5:
p. 25: the first member of struct pam_response is named "resp", not
"response".
p. 28: the first pam_sm_chauthtok() flag is PAM_PRELIM_CHECK, not
PAM_CRED_PRELIM_CHECK.
Errata in XSSO, chapter 6:
p. 32: "PAM_NEW_AUTHTOKEN_REQD" in the DESCRIPTION and RETURN VALUE

View File

@ -96,7 +96,7 @@ enum {
PAM_DELETE_CRED = 0x2,
PAM_REINITIALISE_CRED = 0x4,
PAM_REFRESH_CRED = 0x8,
PAM_CRED_PRELIM_CHECK = 0x1,
PAM_PRELIM_CHECK = 0x1,
PAM_UPDATE_AUTHTOK = 0x2,
PAM_CHANGE_EXPIRED_AUTHTOK = 0x4
};