diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-10 23:53:55 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-10 23:54:55 +0100 |
commit | 60411ac750ec928114be80b133d9782a1cb2da62 (patch) | |
tree | ee695c0087cc2463c83451f9f8e4f15872a85061 /src/libsystemd-bus | |
parent | 369c583b3fb3d672ef469d53141e274ec9d2e8a7 (diff) |
bus: we really need to get rid of the :no-sender hack
This is where a hack from PID 1 spilled into the client side. We need
to get rid of this as soon as PID 1 is converted to libsystemd-bus.
Diffstat (limited to 'src/libsystemd-bus')
-rw-r--r-- | src/libsystemd-bus/bus-internal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd-bus/bus-internal.c b/src/libsystemd-bus/bus-internal.c index f0a28c623c..3fb1cf40f3 100644 --- a/src/libsystemd-bus/bus-internal.c +++ b/src/libsystemd-bus/bus-internal.c @@ -170,6 +170,7 @@ bool sender_name_is_valid(const char *p) { if (isempty(p)) return false; + /* FIXME: remove after PID 1 bus conversion */ if (streq(p, ":no-sender")) return true; |