summaryrefslogtreecommitdiff
path: root/src/libsystemd
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2015-09-08 14:03:22 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2015-09-08 14:03:22 +0200
commit4211d5bd135ae4c43bd2012ae5f327b1cc1596c0 (patch)
tree7ffa23033f081abcec0f9d9d2774cb7f885e9de4 /src/libsystemd
parent23d08d1b2bfd7f4b3c0a9408c9ccd65c3fb80fc2 (diff)
sd-login: fix sd_seat_get_active() to return ENODATAsystemd/v226
This seems to be an oversight from: 707b66c66381c899d7ef640e158ffdd5bcff4deb We have to return ENODATA instead of ENOENT if a requested entry is non-present. Also fix the call-site in udev to check for these errors.
Diffstat (limited to 'src/libsystemd')
-rw-r--r--src/libsystemd/sd-login/sd-login.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd/sd-login/sd-login.c b/src/libsystemd/sd-login/sd-login.c
index 55da26e9d9..265c7c7db2 100644
--- a/src/libsystemd/sd-login/sd-login.c
+++ b/src/libsystemd/sd-login/sd-login.c
@@ -645,10 +645,10 @@ _public_ int sd_seat_get_active(const char *seat, char **session, uid_t *uid) {
return r;
if (session && !s)
- return -ENOENT;
+ return -ENODATA;
if (uid && !t)
- return -ENOENT;
+ return -ENODATA;
if (uid && t) {
r = parse_uid(t, uid);