From: Daan De Meyer Date: Thu, 19 Feb 2026 09:16:37 +0000 (+0100) Subject: machine: Fix cid passed to machine_add_from_params() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6bdd540f9b967764f2cfd3c449ecb3e44ed2f65;p=thirdparty%2Fsystemd.git machine: Fix cid passed to machine_add_from_params() The default value is VMADDR_CID_ANY, not zero. --- 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,