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.
fd99d9d1cb
...
606a08b1b5
@ -233,7 +233,7 @@
|
|||||||
<listitem><para>When used with the <command>user</command> or <command>group</command> command,
|
<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>
|
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>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
|
|||||||
@ -828,8 +828,8 @@ int session_start(Session *s, sd_bus_message *properties, sd_bus_error *error) {
|
|||||||
(void) seat_save(s->seat);
|
(void) seat_save(s->seat);
|
||||||
|
|
||||||
/* Send signals */
|
/* Send signals */
|
||||||
(void) session_send_signal(s, true);
|
session_send_signal(s, true);
|
||||||
(void) user_send_changed(s->user, "Display");
|
user_send_changed(s->user, "Display");
|
||||||
|
|
||||||
if (s->seat && s->seat->active == s)
|
if (s->seat && s->seat->active == s)
|
||||||
(void) seat_send_changed(s->seat, "ActiveSession");
|
(void) seat_send_changed(s->seat, "ActiveSession");
|
||||||
@ -1110,13 +1110,13 @@ int session_set_idle_hint(Session *s, bool b) {
|
|||||||
s->idle_hint = b;
|
s->idle_hint = b;
|
||||||
dual_timestamp_now(&s->idle_hint_timestamp);
|
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)
|
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");
|
user_send_changed(s->user, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
|
||||||
(void) manager_send_changed(s->manager, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
|
manager_send_changed(s->manager, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic");
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user