diff --git a/src/libxl/libxl_driver.c b/src/libxl/libxl_driver.c index 2e7197ce85..d52a8b6958 100644 --- a/src/libxl/libxl_driver.c +++ b/src/libxl/libxl_driver.c @@ -2766,7 +2766,7 @@ libxlDomainUndefineFlags(virDomainPtr dom, if (virFileExists(name)) { if (flags & VIR_DOMAIN_UNDEFINE_MANAGED_SAVE) { if (unlink(name) < 0) { - libxlError(VIR_ERR_INTERNAL_ERR, + libxlError(VIR_ERR_INTERNAL_ERROR, _("Failed to remove domain managed save image")); goto cleanup; } diff --git a/src/remote_protocol-structs b/src/remote_protocol-structs index 46f3a004f5..96e74eb85e 100644 --- a/src/remote_protocol-structs +++ b/src/remote_protocol-structs @@ -1863,5 +1863,5 @@ enum remote_procedure { REMOTE_PROC_NODE_GET_MEMORY_STATS = 228, REMOTE_PROC_DOMAIN_GET_CONTROL_INFO = 229, REMOTE_PROC_DOMAIN_GET_VCPU_PIN_INFO = 230, - REMOTE_PROC_DOMAIN_GET_VCPU_PIN_INFO = 231, + REMOTE_PROC_DOMAIN_UNDEFINE_FLAGS = 231, };