From: Lennart Poettering Date: Fri, 27 Oct 2017 09:40:53 +0000 (+0200) Subject: bus-unit-util: drop #ifdef HAVE_SECCOMP from bus client side X-Git-Tag: v236~181^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f617cd09f3312aa6a63a54f06ce5a25414f86b9;p=thirdparty%2Fsystemd.git bus-unit-util: drop #ifdef HAVE_SECCOMP from bus client side Whether seccomp is supported or not is a server implementation detail, the client should not be altered by that, and clients should be able to talk to servers configured differently than the client, hence drop the HAVE_SECCOMP ifdeffery here. (This would be different if we'd need libseccomp or so to implement the client, but we don't) --- diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 8b189322b17..01beac03426 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -707,8 +707,6 @@ int bus_append_unit_property_assignment(sd_bus_message *m, const char *assignmen r = sd_bus_message_append(m, "v", "i", (int32_t) n); -#if HAVE_SECCOMP - } else if (streq(field, "SystemCallFilter")) { int whitelist; _cleanup_strv_free_ char **l = NULL; @@ -853,7 +851,7 @@ int bus_append_unit_property_assignment(sd_bus_message *m, const char *assignmen r = sd_bus_message_close_container(m); if (r < 0) return bus_log_create_error(r); -#endif + } else if (streq(field, "FileDescriptorStoreMax")) { unsigned u;