From b6bdd540f9b967764f2cfd3c449ecb3e44ed2f65 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Thu, 19 Feb 2026 10:16:37 +0100 Subject: [PATCH] machine: Fix cid passed to machine_add_from_params() The default value is VMADDR_CID_ANY, not zero. --- src/machine/machined-dbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/machined-dbus.c b/src/machine/machined-dbus.c index f2f6a300e3c..0130fbf7798 100644 --- a/src/machine/machined-dbus.c +++ b/src/machine/machined-dbus.c @@ -480,7 +480,7 @@ static int method_create_or_register_machine( root_directory, netif, n_netif, - /* cid= */ 0, + /* cid= */ VMADDR_CID_ANY, /* ssh_address= */ NULL, /* ssh_private_key_path= */ NULL, ret, -- 2.47.3