[systemd-commits] src/libsystemd

David Herrmann dvdhrm at kemper.freedesktop.org
Thu Jan 8 02:12:20 PST 2015


 src/libsystemd/sd-bus/bus-control.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 23539f67792d88c675b56cace0c22e022563493d
Author: Lukasz Skalski <l.skalski at samsung.com>
Date:   Thu Jan 8 11:10:21 2015 +0100

    sd-bus: fix copy-paste error

diff --git a/src/libsystemd/sd-bus/bus-control.c b/src/libsystemd/sd-bus/bus-control.c
index 2db1afb..b450140 100644
--- a/src/libsystemd/sd-bus/bus-control.c
+++ b/src/libsystemd/sd-bus/bus-control.c
@@ -219,7 +219,7 @@ _public_ int sd_bus_release_name(sd_bus *bus, const char *name) {
         assert_return(service_name_is_valid(name), -EINVAL);
         assert_return(name[0] != ':', -EINVAL);
 
-        /* Don't allow requesting the special driver and local names */
+        /* Don't allow releasing the special driver and local names */
         if (STR_IN_SET(name, "org.freedesktop.DBus", "org.freedesktop.DBus.Local"))
                 return -EINVAL;
 



More information about the systemd-commits mailing list