]> git.ipfire.org Git - thirdparty/util-linux.git/commit - AUTHORS
lastlog2 - Y2038 safe version of lastlog
authorStefan Schubert <schubi@suse.de>
Thu, 7 Sep 2023 15:30:23 +0000 (17:30 +0200)
committerStefan Schubert <schubi@suse.de>
Thu, 18 Jan 2024 08:08:04 +0000 (09:08 +0100)
commitc2e299d0acb2fa4ad1691452fa0eae76520bbdb0
treef1f864c89ad71cca687db2819fa9709c5401e36a
parent07f0f0f5bd1e5e2268257ae1ff6d76a9b6c6ea8b
lastlog2 - Y2038 safe version of lastlog
pam_lastlog2 - PAM module which logs user login with lastlog2
61 files changed:
.github/workflows/cibuild-setup-ubuntu.sh
.gitignore
.packit.yaml
AUTHORS
Makefile.am
bash-completion/Makemodule.am
bash-completion/lastlog2 [new file with mode: 0644]
configure.ac
liblastlog2/COPYING [new file with mode: 0644]
liblastlog2/Makemodule.am [new file with mode: 0644]
liblastlog2/README.md [new file with mode: 0644]
liblastlog2/lastlog2.pc.in [new file with mode: 0644]
liblastlog2/man/Makemodule.am [new file with mode: 0644]
liblastlog2/man/lastlog2.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_import_lastlog.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_new_context.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_read_all.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_read_entry.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_remove_entry.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_rename_user.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_unref_context.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_update_login_time.3.adoc [new file with mode: 0644]
liblastlog2/man/ll2_write_entry.3.adoc [new file with mode: 0644]
liblastlog2/meson.build [new file with mode: 0644]
liblastlog2/src/Makemodule.am [new file with mode: 0644]
liblastlog2/src/lastlog2.c [new file with mode: 0644]
liblastlog2/src/lastlog2.h [new file with mode: 0644]
liblastlog2/src/lastlog2P.h [new file with mode: 0644]
liblastlog2/src/liblastlog2.sym [new file with mode: 0644]
liblastlog2/src/tests/tst_dlopen.c [new file with mode: 0644]
liblastlog2/src/tests/tst_pam_lastlog2_output.c [new file with mode: 0644]
liblastlog2/src/tests/tst_remove_entry.c [new file with mode: 0644]
liblastlog2/src/tests/tst_rename_user.c [new file with mode: 0644]
liblastlog2/src/tests/tst_write_read_user.c [new file with mode: 0644]
liblastlog2/src/tests/tst_y2038_ll2_read_all.c [new file with mode: 0644]
liblastlog2/src/tests/tst_y2038_sqlite3_time.c [new file with mode: 0644]
meson.build
meson_options.txt
misc-utils/.gitignore
misc-utils/Makemodule.am
misc-utils/lastlog2-import.service.in [new file with mode: 0644]
misc-utils/lastlog2.8.adoc [new file with mode: 0644]
misc-utils/lastlog2.c [new file with mode: 0644]
misc-utils/lastlog2.conf.in [new file with mode: 0644]
misc-utils/meson.build
pam_lastlog2/COPYING [new file with mode: 0644]
pam_lastlog2/Makemodule.am [new file with mode: 0644]
pam_lastlog2/man/Makemodule.am [new file with mode: 0644]
pam_lastlog2/man/pam_lastlog2.8.adoc [new file with mode: 0644]
pam_lastlog2/meson.build [new file with mode: 0644]
pam_lastlog2/src/Makemodule.am [new file with mode: 0644]
pam_lastlog2/src/pam_lastlog2.c [new file with mode: 0644]
pam_lastlog2/src/pam_lastlog2.sym [new file with mode: 0644]
tests/commands.sh
tests/ts/liblastlog2/dlopen [new file with mode: 0755]
tests/ts/liblastlog2/pam_lastlog2_output [new file with mode: 0755]
tests/ts/liblastlog2/remove_entry [new file with mode: 0755]
tests/ts/liblastlog2/rename_user [new file with mode: 0755]
tests/ts/liblastlog2/sqlite3_time [new file with mode: 0755]
tests/ts/liblastlog2/write_read_user [new file with mode: 0755]
tests/ts/liblastlog2/y2038_ll2_read_all [new file with mode: 0755]