From: Jelle van der Waa Date: Tue, 6 May 2025 14:24:42 +0000 (+0200) Subject: core: prefer American spelling of canceled X-Git-Tag: v258-rc1~680^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F37356%2Fhead;p=thirdparty%2Fsystemd.git core: prefer American spelling of canceled --- diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index b955a2fdded..9080ad93de9 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -1771,7 +1771,7 @@ void bus_unit_send_pending_change_signal(Unit *u, bool including_new) { bus_unit_send_change_signal(u); } -int bus_unit_send_pending_freezer_message(Unit *u, bool cancelled) { +int bus_unit_send_pending_freezer_message(Unit *u, bool canceled) { _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL; int r; @@ -1780,7 +1780,7 @@ int bus_unit_send_pending_freezer_message(Unit *u, bool cancelled) { if (!u->pending_freezer_invocation) return 0; - if (cancelled) + if (canceled) r = sd_bus_message_new_method_error( u->pending_freezer_invocation, &reply, diff --git a/src/core/dbus-unit.h b/src/core/dbus-unit.h index e9dd1ec3170..9cf2cbf878d 100644 --- a/src/core/dbus-unit.h +++ b/src/core/dbus-unit.h @@ -10,7 +10,7 @@ extern const sd_bus_vtable bus_unit_cgroup_vtable[]; void bus_unit_send_change_signal(Unit *u); void bus_unit_send_pending_change_signal(Unit *u, bool including_new); -int bus_unit_send_pending_freezer_message(Unit *u, bool cancelled); +int bus_unit_send_pending_freezer_message(Unit *u, bool canceled); void bus_unit_send_removed_signal(Unit *u); int bus_unit_method_start_generic(sd_bus_message *message, Unit *u, JobType job_type, bool reload_if_possible, sd_bus_error *error);