Changeset 416 in openpam
- Timestamp:
- 02/14/08 18:33:24 (5 years ago)
- Location:
- trunk
- Files:
-
- 62 edited
-
bin/su/su.c (modified) (1 diff)
-
lib/openpam_borrow_cred.c (modified) (1 diff)
-
lib/openpam_configure.c (modified) (1 diff)
-
lib/openpam_dispatch.c (modified) (1 diff)
-
lib/openpam_dynamic.c (modified) (1 diff)
-
lib/openpam_findenv.c (modified) (1 diff)
-
lib/openpam_free_data.c (modified) (1 diff)
-
lib/openpam_free_envlist.c (modified) (1 diff)
-
lib/openpam_get_option.c (modified) (1 diff)
-
lib/openpam_impl.h (modified) (1 diff)
-
lib/openpam_load.c (modified) (1 diff)
-
lib/openpam_log.c (modified) (1 diff)
-
lib/openpam_nullconv.c (modified) (1 diff)
-
lib/openpam_readline.c (modified) (1 diff)
-
lib/openpam_restore_cred.c (modified) (1 diff)
-
lib/openpam_set_option.c (modified) (1 diff)
-
lib/openpam_static.c (modified) (1 diff)
-
lib/openpam_ttyconv.c (modified) (1 diff)
-
lib/pam_acct_mgmt.c (modified) (1 diff)
-
lib/pam_authenticate.c (modified) (1 diff)
-
lib/pam_authenticate_secondary.c (modified) (1 diff)
-
lib/pam_chauthtok.c (modified) (1 diff)
-
lib/pam_close_session.c (modified) (1 diff)
-
lib/pam_end.c (modified) (1 diff)
-
lib/pam_error.c (modified) (1 diff)
-
lib/pam_get_authtok.c (modified) (1 diff)
-
lib/pam_get_data.c (modified) (1 diff)
-
lib/pam_get_item.c (modified) (1 diff)
-
lib/pam_get_mapped_authtok.c (modified) (1 diff)
-
lib/pam_get_mapped_username.c (modified) (1 diff)
-
lib/pam_get_user.c (modified) (1 diff)
-
lib/pam_getenv.c (modified) (1 diff)
-
lib/pam_getenvlist.c (modified) (1 diff)
-
lib/pam_info.c (modified) (1 diff)
-
lib/pam_open_session.c (modified) (1 diff)
-
lib/pam_prompt.c (modified) (1 diff)
-
lib/pam_putenv.c (modified) (1 diff)
-
lib/pam_set_data.c (modified) (1 diff)
-
lib/pam_set_item.c (modified) (1 diff)
-
lib/pam_set_mapped_authtok.c (modified) (1 diff)
-
lib/pam_set_mapped_username.c (modified) (1 diff)
-
lib/pam_setcred.c (modified) (1 diff)
-
lib/pam_setenv.c (modified) (1 diff)
-
lib/pam_sm_acct_mgmt.c (modified) (1 diff)
-
lib/pam_sm_authenticate.c (modified) (1 diff)
-
lib/pam_sm_authenticate_secondary.c (modified) (1 diff)
-
lib/pam_sm_chauthtok.c (modified) (1 diff)
-
lib/pam_sm_close_session.c (modified) (1 diff)
-
lib/pam_sm_get_mapped_authtok.c (modified) (1 diff)
-
lib/pam_sm_get_mapped_username.c (modified) (1 diff)
-
lib/pam_sm_open_session.c (modified) (1 diff)
-
lib/pam_sm_set_mapped_authtok.c (modified) (1 diff)
-
lib/pam_sm_set_mapped_username.c (modified) (1 diff)
-
lib/pam_sm_setcred.c (modified) (1 diff)
-
lib/pam_start.c (modified) (1 diff)
-
lib/pam_strerror.c (modified) (1 diff)
-
lib/pam_verror.c (modified) (1 diff)
-
lib/pam_vinfo.c (modified) (1 diff)
-
lib/pam_vprompt.c (modified) (1 diff)
-
modules/pam_deny/pam_deny.c (modified) (1 diff)
-
modules/pam_permit/pam_permit.c (modified) (1 diff)
-
modules/pam_unix/pam_unix.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/su/su.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/openpam_borrow_cred.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/openpam_configure.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <ctype.h> -
trunk/lib/openpam_dispatch.c
r415 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/openpam_dynamic.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <dlfcn.h> -
trunk/lib/openpam_findenv.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <string.h> 39 43 -
trunk/lib/openpam_free_data.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <stdlib.h> 39 43 #include <string.h> -
trunk/lib/openpam_free_envlist.c
r320 r416 28 28 * $Id$ 29 29 */ 30 31 #ifdef HAVE_CONFIG_H 32 # include "config.h" 33 #endif 30 34 31 35 #include <stdlib.h> -
trunk/lib/openpam_get_option.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/openpam_impl.h
r415 r416 38 38 #ifndef _OPENPAM_IMPL_H_INCLUDED 39 39 #define _OPENPAM_IMPL_H_INCLUDED 40 41 #ifdef HAVE_CONFIG_H42 # include <config.h>43 #endif44 40 45 41 #include <security/openpam.h> -
trunk/lib/openpam_load.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <dlfcn.h> -
trunk/lib/openpam_log.c
r415 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <ctype.h> -
trunk/lib/openpam_nullconv.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/types.h> -
trunk/lib/openpam_readline.c
r413 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <ctype.h> -
trunk/lib/openpam_restore_cred.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/openpam_set_option.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/openpam_static.c
r415 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <string.h> 39 43 -
trunk/lib/openpam_ttyconv.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/types.h> -
trunk/lib/pam_acct_mgmt.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_authenticate.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_authenticate_secondary.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <security/pam_appl.h> 39 43 -
trunk/lib/pam_chauthtok.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_close_session.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_end.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_error.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdarg.h> -
trunk/lib/pam_get_authtok.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_get_data.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <string.h> -
trunk/lib/pam_get_item.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_get_mapped_authtok.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <security/pam_appl.h> 39 43 -
trunk/lib/pam_get_mapped_username.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <security/pam_appl.h> 39 43 -
trunk/lib/pam_get_user.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_getenv.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_getenvlist.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_info.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdarg.h> -
trunk/lib/pam_open_session.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_prompt.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/types.h> -
trunk/lib/pam_putenv.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_set_data.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_set_item.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_set_mapped_authtok.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <security/pam_appl.h> 39 43 -
trunk/lib/pam_set_mapped_username.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <security/pam_appl.h> 39 43 -
trunk/lib/pam_setcred.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_setenv.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_sm_acct_mgmt.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_sm_authenticate.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_sm_authenticate_secondary.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <sys/param.h> 39 43 -
trunk/lib/pam_sm_chauthtok.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_sm_close_session.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_sm_get_mapped_authtok.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <sys/param.h> 39 43 -
trunk/lib/pam_sm_get_mapped_username.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <sys/param.h> 39 43 -
trunk/lib/pam_sm_open_session.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_sm_set_mapped_authtok.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <sys/param.h> 39 43 -
trunk/lib/pam_sm_set_mapped_username.c
r408 r416 36 36 */ 37 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 41 38 42 #include <sys/param.h> 39 43 -
trunk/lib/pam_sm_setcred.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <sys/param.h> -
trunk/lib/pam_start.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdlib.h> -
trunk/lib/pam_strerror.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdio.h> -
trunk/lib/pam_verror.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdarg.h> -
trunk/lib/pam_vinfo.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdarg.h> -
trunk/lib/pam_vprompt.c
r408 r416 35 35 * $Id$ 36 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 # include "config.h" 40 #endif 37 41 38 42 #include <stdarg.h> -
trunk/modules/pam_deny/pam_deny.c
r408 r416 37 37 38 38 #ifdef HAVE_CONFIG_H 39 # include <config.h>39 # include "config.h" 40 40 #endif 41 41 -
trunk/modules/pam_permit/pam_permit.c
r408 r416 37 37 38 38 #ifdef HAVE_CONFIG_H 39 # include <config.h>39 # include "config.h" 40 40 #endif 41 41 -
trunk/modules/pam_unix/pam_unix.c
r408 r416 37 37 38 38 #ifdef HAVE_CONFIG_H 39 # include <config.h>39 # include "config.h" 40 40 #endif 41 41
Note: See TracChangeset
for help on using the changeset viewer.