From 3fa3cff73cc65dcc2af695baceb878e6954acdfa Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Thu, 26 Nov 2009 13:39:30 +0000 Subject: [PATCH] Fix migration cancellation for QEMU * src/qemu/qemu_monitor_text.c: Add missing underscore in the migrate_cancel monitor command impl --- src/qemu/qemu_monitor_text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qemu/qemu_monitor_text.c b/src/qemu/qemu_monitor_text.c index 2a8b3bde1c..db155734d5 100644 --- a/src/qemu/qemu_monitor_text.c +++ b/src/qemu/qemu_monitor_text.c @@ -1038,7 +1038,7 @@ int qemuMonitorTextMigrateCancel(qemuMonitorPtr mon) { char *info = NULL; - if (qemuMonitorCommand(mon, "migrate cancel", &info) < 0) { + if (qemuMonitorCommand(mon, "migrate_cancel", &info) < 0) { qemudReportError(NULL, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s", _("cannot run monitor command to cancel migration")); return -1; -- 2.47.2