core/execute-serialize: drop extraneous '=' in ip-{in,e}gress serialization
authorMike Yuan <me@yhndnzj.com>
Sat, 3 Aug 2024 20:37:41 +0000 (22:37 +0200)
committerLuca Boccassi <bluca@debian.org>
Thu, 15 Aug 2024 13:04:41 +0000 (14:04 +0100)
(cherry picked from commit f0fdd13c2f06f9c78747103b971566e2c62b9333)

src/core/execute-serialize.c

index ecd1e70db67fe93a14b43eedd919c301684d72c1..3dba7eb2f0b4d955cb5075ed573944536dc995e8 100644 (file)
@@ -434,11 +434,11 @@ static int exec_cgroup_context_serialize(const CGroupContext *c, FILE *f) {
         if (r < 0)
                 return r;
 
-        r = serialize_strv(f, "exec-cgroup-context-ip-ingress-filter-path=", c->ip_filters_ingress);
+        r = serialize_strv(f, "exec-cgroup-context-ip-ingress-filter-path", c->ip_filters_ingress);
         if (r < 0)
                 return r;
 
-        r = serialize_strv(f, "exec-cgroup-context-ip-egress-filter-path=", c->ip_filters_egress);
+        r = serialize_strv(f, "exec-cgroup-context-ip-egress-filter-path", c->ip_filters_egress);
         if (r < 0)
                 return r;