diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-10-15 13:58:00 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-10-15 19:35:00 +0200 |
commit | ececf6c0825bb6cca769806682348255c53d4eac (patch) | |
tree | f7a146373408781fa36019bdf5873ce3fb08f222 /src/core/dbus.c | |
parent | strxcpyx: minor coding style updates (diff) | |
download | systemd-ececf6c0825bb6cca769806682348255c53d4eac.tar.xz systemd-ececf6c0825bb6cca769806682348255c53d4eac.zip |
core: be more specific in error message
Diffstat (limited to '')
-rw-r--r-- | src/core/dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus.c b/src/core/dbus.c index ea77cf8309..d4b74bbd3b 100644 --- a/src/core/dbus.c +++ b/src/core/dbus.c @@ -1001,7 +1001,7 @@ int bus_init_private(Manager *m) { e = secure_getenv("XDG_RUNTIME_DIR"); if (!e) { - log_error("Failed to determine XDG_RUNTIME_DIR"); + log_error("XDG_RUNTIME_DIR is not set, refusing."); return -EHOSTDOWN; } |