1
0
mirror of https://github.com/systemd/systemd synced 2025-11-21 09:44:44 +01:00

Compare commits

..

No commits in common. "fd99d9d1cb53f32dea46f1770446db729c316304" and "606a08b1b56a664ac89c5ca9e583789e0487e013" have entirely different histories.

2 changed files with 7 additions and 7 deletions

View File

@ -233,7 +233,7 @@
<listitem><para>When used with the <command>user</command> or <command>group</command> command,
filters the output to the record with the specified UUID. If unspecified, no UUID-based filtering is applied.</para>
<xi:include href="version-info.xml" xpointer="v259"/></listitem>
<xi:include href="version-info.xml" xpointer="v258"/></listitem>
</varlistentry>
<varlistentry>

View File

@ -828,8 +828,8 @@ int session_start(Session *s, sd_bus_message *properties, sd_bus_error *error) {
(void) seat_save(s->seat);
/* Send signals */
(void) session_send_signal(s, true);
(void) user_send_changed(s->user, "Display");
session_send_signal(s, true);
user_send_changed(s->user, "Display");
if (s->seat && s->seat->active == s)
(void) seat_send_changed(s->seat, "ActiveSession");
@ -1110,13 +1110,13 @@ int session_set_idle_hint(Session *s, bool b) {
s->idle_hint = b;
dual_timestamp_now(&s->idle_hint_timestamp);
(void) session_send_changed(s, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
session_send_changed(s, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
if (s->seat)
(void) seat_send_changed(s->seat, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
seat_send_changed(s->seat, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
(void) user_send_changed(s->user, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
(void) manager_send_changed(s->manager, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
user_send_changed(s->user, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
manager_send_changed(s->manager, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
return 1;
}