From: Kay Sievers Date: Thu, 6 Aug 2015 11:45:46 +0000 (+0200) Subject: bus-proxy: add comment to remove -EPERM check X-Git-Tag: v225~91 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=855fc9744f63c04b220392f2ee30a83e4d6a7610;p=thirdparty%2Fsystemd.git bus-proxy: add comment to remove -EPERM check --- diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c index 499a4e17d9d..88800f5e7f2 100644 --- a/src/bus-proxyd/proxy.c +++ b/src/bus-proxyd/proxy.c @@ -782,6 +782,8 @@ static int proxy_process_destination_to_local(Proxy *p) { * caller's timeout to expire, so this should be * acceptable. Nobody sane sends replies without a * matching method-call, so nobody should care. */ + + /* FIXME: remove -EPERM when kdbus is updated */ if ((r == -EPERM || r == -EBADSLT) && m->reply_cookie > 0) return 1;