Lines 33-46
Link Here
|
33 |
#include <glib/gi18n.h> |
33 |
#include <glib/gi18n.h> |
34 |
#include <glib-object.h> |
34 |
#include <glib-object.h> |
35 |
|
35 |
|
36 |
#ifdef WITH_SYSTEMD |
|
|
37 |
#include <systemd/sd-daemon.h> |
38 |
#endif |
39 |
|
40 |
#include "gdm-display.h" |
36 |
#include "gdm-display.h" |
41 |
#include "gdm-display-glue.h" |
37 |
#include "gdm-display-glue.h" |
42 |
#include "gdm-display-access-file.h" |
38 |
#include "gdm-display-access-file.h" |
43 |
|
39 |
|
|
|
40 |
#include "gdm-common.h" |
44 |
#include "gdm-settings-direct.h" |
41 |
#include "gdm-settings-direct.h" |
45 |
#include "gdm-settings-keys.h" |
42 |
#include "gdm-settings-keys.h" |
46 |
|
43 |
|
Lines 365-371
gdm_display_real_get_timed_login_details (GdmDisplay *display,
Link Here
|
365 |
* can support auto/timed login on auxilliary seats in the |
362 |
* can support auto/timed login on auxilliary seats in the |
366 |
* systemd path. |
363 |
* systemd path. |
367 |
*/ |
364 |
*/ |
368 |
if (sd_booted() > 0) { |
365 |
if (LOGIND_RUNNING()) { |
369 |
if (g_strcmp0 (display->priv->seat_id, "seat0") != 0) { |
366 |
if (g_strcmp0 (display->priv->seat_id, "seat0") != 0) { |
370 |
goto out; |
367 |
goto out; |
371 |
} |
368 |
} |
372 |
- |
|
|