mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
I'm not increasing the shlib major version for this, because not a single application outside the base system should have used these functions in such a short timespan. Rewrite ulog_login(3) and ulog_logout(3) to build on top of the utmpx implementation in libc.
17 lines
233 B
Text
17 lines
233 B
Text
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
FBSD_1.2 {
|
|
ulog_login;
|
|
ulog_login_pseudo;
|
|
ulog_logout;
|
|
ulog_logout_pseudo;
|
|
|
|
addToUtmp;
|
|
removeFromUtmp;
|
|
removeLineFromUtmp;
|
|
utempter_add_record;
|
|
utempter_remove_added_record;
|
|
utempter_remove_record;
|
|
};
|