Re: [systemd-devel] [PATCH] dbus: return non-zero return value in the case that prefix won't match

2014-11-23 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Nov 20, 2014 at 04:06:18PM +0100, Lukas Nykryn wrote: > 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 adde

[systemd-devel] [PATCH] dbus: return non-zero return value in the case that prefix won't match

2014-11-20 Thread Lukas Nykryn
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| 2 +- src/core/manager.c | 2 +-