mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-01 07:15:32 -04:00
meson: utempter del has no argument
This fixes an issue where we didn't record a logout record when using the libutempter backend.
This commit is contained in:
parent
1d9ac3f611
commit
65528f455d
2 changed files with 3 additions and 2 deletions
|
|
@ -93,7 +93,8 @@
|
||||||
|
|
||||||
* Invalid configuration values overriding valid ones in surprising
|
* Invalid configuration values overriding valid ones in surprising
|
||||||
ways.
|
ways.
|
||||||
|
* Bug where the libutempter utmp backend did not record logouts
|
||||||
|
correctly.
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
### Contributors
|
### Contributors
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ if utmp_backend == 'none'
|
||||||
elif utmp_backend == 'libutempter'
|
elif utmp_backend == 'libutempter'
|
||||||
utmp_add = 'add'
|
utmp_add = 'add'
|
||||||
utmp_del = 'del'
|
utmp_del = 'del'
|
||||||
utmp_del_have_argument = true
|
utmp_del_have_argument = false
|
||||||
if utmp_default_helper_path == 'auto'
|
if utmp_default_helper_path == 'auto'
|
||||||
utmp_default_helper_path = join_paths('/usr', get_option('libdir'), 'utempter', 'utempter')
|
utmp_default_helper_path = join_paths('/usr', get_option('libdir'), 'utempter', 'utempter')
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue