dbus: return non-zero return value in the case that prefix won't match
authorLukas Nykryn <lnykryn@redhat.com>
Thu, 20 Nov 2014 15:06:18 +0000 (16:06 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 24 Nov 2014 00:15:20 +0000 (19:15 -0500)
commitf44b9efcec4594eb8f843325ee3079b44fb8f24a
tree404f03b832cf9e91e8473b3e9119b8e6ee7e11c6
parent58f10d401f1d3cd76f560e1914147040e8defa76
dbus: return non-zero return value in the case that prefix won't match

strv_extend returns 0 in the case of success which means that
else if (bus_track_deserialize_item(&m->deserialized_subscribed, l) == 0)
        log_warning("Unknown serialization item '%s'", l);
will be printed when value is added correctly.
src/core/dbus.c
src/core/manager.c