Changeset 106 in openpam
- Timestamp:
- Apr 8, 2002, 1:42:13 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/man/Makefile
r93 r106 32 32 # SUCH DAMAGE. 33 33 # 34 # $P4: //depot/projects/openpam/doc/man/Makefile# 5$34 # $P4: //depot/projects/openpam/doc/man/Makefile#6 $ 35 35 # 36 36 37 37 MAN = 38 MAN += openpam_borrow_cred.3 39 MAN += openpam_free_data.3 38 40 MAN += openpam_get_option.3 39 41 MAN += openpam_log.3 42 MAN += openpam_restore_cred.3 40 43 MAN += openpam_set_option.3 41 44 MAN += openpam_ttyconv.3 -
trunk/include/security/openpam.h
r104 r106 32 32 * SUCH DAMAGE. 33 33 * 34 * $P4: //depot/projects/openpam/include/security/openpam.h#1 4$34 * $P4: //depot/projects/openpam/include/security/openpam.h#15 $ 35 35 */ 36 36 … … 47 47 #endif 48 48 49 struct passwd; 50 49 51 /* 50 52 * API extensions 51 53 */ 54 int 55 openpam_borrow_cred(pam_handle_t *_pamh, 56 const struct passwd *_pwd); 57 58 void 59 openpam_free_data(pam_handle_t *_pamh, 60 void *_data, 61 int _status); 62 52 63 const char * 53 64 openpam_get_option(pam_handle_t *_pamh, 54 65 const char *_option); 66 67 int 68 openpam_restore_cred(pam_handle_t *_pamh); 55 69 56 70 int -
trunk/lib/Makefile
r93 r106 32 32 # SUCH DAMAGE. 33 33 # 34 # $P4: //depot/projects/openpam/lib/Makefile#1 2$34 # $P4: //depot/projects/openpam/lib/Makefile#13 $ 35 35 # 36 36 … … 45 45 46 46 SRCS = 47 SRCS += openpam_borrow_cred.c 47 48 SRCS += openpam_dispatch.c 48 49 SRCS += openpam_dynamic.c 49 50 SRCS += openpam_findenv.c 51 SRCS += openpam_free_data.c 50 52 SRCS += openpam_get_option.c 51 53 SRCS += openpam_load.c 52 54 SRCS += openpam_log.c 55 SRCS += openpam_restore_cred.c 53 56 SRCS += openpam_set_option.c 54 57 SRCS += openpam_static.c -
trunk/lib/openpam_impl.h
r93 r106 32 32 * SUCH DAMAGE. 33 33 * 34 * $P4: //depot/projects/openpam/lib/openpam_impl.h#1 1$34 * $P4: //depot/projects/openpam/lib/openpam_impl.h#12 $ 35 35 */ 36 36 … … 94 94 }; 95 95 96 #ifdef NGROUPS_MAX 97 #define PAM_SAVED_CRED "pam_saved_cred" 98 struct pam_saved_cred { 99 uid_t euid; 100 gid_t egid; 101 gid_t groups[NGROUPS_MAX]; 102 int ngroups; 103 }; 104 #endif 105 96 106 #define PAM_OTHER "other" 97 107
Note: See TracChangeset
for help on using the changeset viewer.