diff options
author | Lukasz Skalski <l.skalski@samsung.com> | 2015-01-08 11:10:21 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2015-01-08 11:11:58 +0100 |
commit | 23539f67792d88c675b56cace0c22e022563493d (patch) | |
tree | 5cbf14eeae1308a622d8a2127d148775f49e581c | |
parent | 92ff080be100aff15f292e2631921131c610afe7 (diff) |
sd-bus: fix copy-paste error
-rw-r--r-- | src/libsystemd/sd-bus/bus-control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd/sd-bus/bus-control.c b/src/libsystemd/sd-bus/bus-control.c index 2db1afb86d..b45014078d 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; |