Changeset 87 in openpam for trunk/include/security/openpam.h
- Timestamp:
- Mar 5, 2002, 2:20:26 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/security/openpam.h
r86 r87 32 32 * SUCH DAMAGE. 33 33 * 34 * $P4: //depot/projects/openpam/include/security/openpam.h#1 0$34 * $P4: //depot/projects/openpam/include/security/openpam.h#11 $ 35 35 */ 36 36 … … 178 178 typedef struct pam_module pam_module_t; 179 179 struct pam_module { 180 c onst char*path;180 char *path; 181 181 pam_func_t func[PAM_NUM_PRIMITIVES]; 182 182 void *dlh; … … 202 202 #define PAM_EXTERN static 203 203 #define PAM_MODULE_ENTRY(name) \ 204 static struct pam_module _pam_module = { name PAM_SOEXT, { \ 204 static char _pam_name[] = name PAM_SOEXT; \ 205 static struct pam_module _pam_module = { _pam_name, { \ 205 206 pam_sm_authenticate, pam_sm_setcred, pam_sm_acct_mgmt, \ 206 207 pam_sm_open_session, pam_sm_close_session, pam_sm_chauthtok }, \
Note: See TracChangeset
for help on using the changeset viewer.