summaryrefslogtreecommitdiff
path: root/src/libsystemd/sd-bus/bus-common-errors.h
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2015-07-07 19:38:41 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2015-07-07 19:38:41 +0200
commitb80120c4cba7d134b5437a58437a23fdf7ab2084 (patch)
treefab868c26a100e7ae41f235f458ef3d4490812a9 /src/libsystemd/sd-bus/bus-common-errors.h
parent586cd08e1bbf8d6b1a960dc94f46235fde0d68c1 (diff)
logind: fail on CreateSession if already in session
Right now, if you're already in a session and call CreateSession, we return information about the current session of yours. This is highy confusing and a nasty hack. Avoid that, and instead return a commonly known error, so the caller can detect that. This has the side-effect, that we no longer override XDG_VTNR and XDG_SEAT in pam_systemd, if you're already in a session. But this sounds like the right thing to do, anyway.
Diffstat (limited to 'src/libsystemd/sd-bus/bus-common-errors.h')
-rw-r--r--src/libsystemd/sd-bus/bus-common-errors.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd/sd-bus/bus-common-errors.h b/src/libsystemd/sd-bus/bus-common-errors.h
index b17b62ac93..0dbfbddcf6 100644
--- a/src/libsystemd/sd-bus/bus-common-errors.h
+++ b/src/libsystemd/sd-bus/bus-common-errors.h
@@ -58,6 +58,7 @@
#define BUS_ERROR_DEVICE_NOT_TAKEN "org.freedesktop.login1.DeviceNotTaken"
#define BUS_ERROR_OPERATION_IN_PROGRESS "org.freedesktop.login1.OperationInProgress"
#define BUS_ERROR_SLEEP_VERB_NOT_SUPPORTED "org.freedesktop.login1.SleepVerbNotSupported"
+#define BUS_ERROR_SESSION_BUSY "org.freedesktop.login1.SessionBusy"
#define BUS_ERROR_AUTOMATIC_TIME_SYNC_ENABLED "org.freedesktop.timedate1.AutomaticTimeSyncEnabled"