summary refs log tree commit diff
path: root/host/start-vm/ch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'host/start-vm/ch.rs')
-rw-r--r--host/start-vm/ch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/start-vm/ch.rs b/host/start-vm/ch.rs
index 84216fb..876a6ed 100644
--- a/host/start-vm/ch.rs
+++ b/host/start-vm/ch.rs
@@ -14,7 +14,7 @@ const EPERM: NonZeroI32 = unsafe { NonZeroI32::new_unchecked(1) };
 const EPROTO: NonZeroI32 = unsafe { NonZeroI32::new_unchecked(71) };
 
 fn command(vm_name: &OsStr, s: impl AsRef<OsStr>) -> Command {
-    let mut api_socket_path = OsString::from("/run/service/ext-");
+    let mut api_socket_path = OsString::from("/run/service/ext-vm-");
     api_socket_path.push(vm_name);
     api_socket_path.push("/env/cloud-hypervisor.sock");