From 0ae6f4843e16798e91d1b1da76973398922729b8 Mon Sep 17 00:00:00 2001 From: Abderrahim Kitouni Date: Tue, 26 Nov 2024 11:55:33 +0100 Subject: [PATCH] updatectl: fix DBus method signature for SetFeatureEnabled The signature was changed to 'sit' in sysupdated during review, but updatectl kept using 'sbt' --- src/sysupdate/updatectl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysupdate/updatectl.c b/src/sysupdate/updatectl.c index 7cfccb66f47..6cb7c6fbf19 100644 --- a/src/sysupdate/updatectl.c +++ b/src/sysupdate/updatectl.c @@ -1414,7 +1414,7 @@ static int verb_enable(int argc, char **argv, void *userdata) { "SetFeatureEnabled", &error, /* reply= */ NULL, - "sbt", + "sit", *feature, (int) enable, UINT64_C(0)); -- 2.47.3