]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: set a description on private bus connections
authorLennart Poettering <lennart@poettering.net>
Wed, 7 Feb 2018 21:30:17 +0000 (22:30 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 12 Feb 2018 10:34:00 +0000 (11:34 +0100)
Let's make things easier to debug

src/core/dbus.c

index 65079135df581ba4b764266a39bf24ab3172721d..87739f1b74d544cb752628d470e6f8c4afa4e7f7 100644 (file)
@@ -653,6 +653,8 @@ static int bus_on_connection(sd_event_source *s, int fd, uint32_t revents, void
                 return 0;
         }
 
+        (void) sd_bus_set_description(bus, "private-bus-connection");
+
         r = sd_bus_set_fd(bus, nfd, nfd);
         if (r < 0) {
                 log_warning_errno(r, "Failed to set fd on new connection bus: %m");