]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core/service: fix typo
authorMike Yuan <me@yhndnzj.com>
Fri, 13 Feb 2026 10:16:47 +0000 (11:16 +0100)
committerMike Yuan <me@yhndnzj.com>
Fri, 13 Feb 2026 13:51:44 +0000 (14:51 +0100)
Addresses https://github.com/systemd/systemd/pull/40093#discussion_r2803104490

src/core/service.c

index 255e86cfb5617c69cd4e3980dde784492a8bcc6c..30e04ec5596158fadf18a3cb44ffd4b213767f1f 100644 (file)
@@ -3917,7 +3917,7 @@ static int service_deserialize_item(Unit *u, const char *key, const char *value,
         else if (streq(key, "refreshed-mask")) {
                 r = service_refresh_on_reload_from_string_many(value, &s->refreshed_mask);
                 if (r < 0)
-                        log_unit_debug_errno(u, r, "Failed to parse refresh-mask value: %s", value);
+                        log_unit_debug_errno(u, r, "Failed to parse refreshed-mask value: %s", value);
         } else
                 log_unit_debug(u, "Unknown serialization key: %s", key);