[libvirt] [PATCHv2 2/6] conf: Reword error message to be more universal

Peter Krempa pkrempa at redhat.com
Tue Apr 16 14:00:08 UTC 2013


The error message that warns user when a request to chagne/get
persistent configuration of a transient domain is requested suggests
that changes are being made. Reword it to be more universal and allow it
to be used for getter APIs too.

Before:
$ virsh vcpucount transient-domain --config
error: Requested operation is not valid: cannot change persistent config of a transient domain

After:
$ virsh vcpucount transient-domain --config
error: Requested operation is not valid: cannot access persistent config of a transient domain
---

Notes:
    Version 2:
    -New in series

 src/conf/domain_conf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index 548368e..850e8d6 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -2251,7 +2251,7 @@ virDomainLiveConfigHelperMethod(virCapsPtr caps,
     if (*flags & VIR_DOMAIN_AFFECT_CONFIG) {
         if (!dom->persistent) {
             virReportError(VIR_ERR_OPERATION_INVALID, "%s",
-                           _("cannot change persistent config of a "
+                           _("cannot access persistent config of a "
                              "transient domain"));
             goto cleanup;
         }
-- 
1.8.1.5




More information about the libvir-list mailing list