freebsd-skq/lib/libpam/modules
peter 97526c738c utmp.ut_time and lastlog.ll_time are explicitly int32_t rather than
time_t.  Deal with the possibility that time_t != int32_t.  This boils
down to this sort of thing:
 -   time(&ut.ut_time);
 +   ut.ut_time = time(NULL);
and similar for ctime(3) etc.  I've kept it minimal for the stuff
that may need to be portable (or 3rd party code), but used Matt's time32
stuff for cases where that isn't as much of a concern.

Approved by: re (jhb)
2002-11-15 22:42:00 +00:00
..
pam_deny
pam_echo
pam_exec
pam_ftp
pam_ftpusers
pam_kerberosIV
pam_krb5 The pam_krb5 module stored a reference to a krb5_ccache structure as 2002-11-13 17:46:15 +00:00
pam_ksu
pam_lastlog utmp.ut_time and lastlog.ll_time are explicitly int32_t rather than 2002-11-15 22:42:00 +00:00
pam_login_access
pam_nologin
pam_opie
pam_opieaccess
pam_passwdqc
pam_permit
pam_radius Allow the admin to specify a different NAS identifier than the hostname. 2002-10-28 10:28:46 +00:00
pam_rhosts
pam_rootok
pam_securetty
pam_self
pam_ssh
pam_tacplus
pam_unix
pam_wheel
Makefile
Makefile.inc Make dynamic PAM modules depend on dynamic PAM library. 2002-11-14 19:24:51 +00:00
modules.inc