From 33a07b8e4154b25f7119c0d2177983a5a1f1cae0 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 25 Feb 2019 10:37:58 -0600 Subject: [PATCH] snapshot: Improve message for VIR_ERR_INVALID_DOMAIN_SNAPSHOT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For consistency with other error messages, and the fact that the object is always called a virDomainSnapshot rather than a mere virSnapshot, include the word "domain" in the error message. Suggested-by: John Ferlan Signed-off-by: Eric Blake Reviewed-by: Daniel P. Berrangé --- src/util/virerror.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/virerror.c b/src/util/virerror.c index 63de0cb278..91a513160f 100644 --- a/src/util/virerror.c +++ b/src/util/virerror.c @@ -1122,8 +1122,8 @@ const virErrorMsgTuple virErrorMsgStrings[VIR_ERR_NUMBER_LAST] = { N_("Hook script execution failed"), N_("Hook script execution failed: %s") }, [VIR_ERR_INVALID_DOMAIN_SNAPSHOT] = { - N_("Invalid snapshot"), - N_("Invalid snapshot: %s") }, + N_("Invalid domain snapshot"), + N_("Invalid domain snapshot: %s") }, [VIR_ERR_NO_DOMAIN_SNAPSHOT] = { N_("Domain snapshot not found"), N_("Domain snapshot not found: %s") },