]> xenbits.xensource.com Git - libvirt.git/commitdiff
storage: Delete extra wrap after vol-resize error
authorYanqiu Zhang <yanqzhan@redhat.com>
Thu, 25 Aug 2016 02:49:55 +0000 (10:49 +0800)
committerJohn Ferlan <jferlan@redhat.com>
Wed, 7 Sep 2016 15:11:30 +0000 (11:11 -0400)
This patch is to delete the extra wrap "\n" after failed vol-resize
error for both "Failed to change size of volume to" and "Failed to change
size of volume by". For error with wrap, there will be an extra wrap
between two errors, such as:

   (1)# virsh vol-resize --pool default --vol vol-test 5M
        error: Failed to change size of volume 'vol-test' to 5M

        error: invalid argument: Can't shrink capacity below current capacity unless shrink flag explicitly specified

   (2)# virsh vol-resize /var/lib/libvirt/images/volds --shrink --delta 10M
        error: Failed to change size of volume 'volds' by 10M

        error: invalid argument: can't shrink capacity below existing allocation

tools/virsh-volume.c

index b7debc2dd51d62b2f6d93933fe384529c7104682..f302f9558db7ac085b5214eab4315fc0036e8341 100644 (file)
@@ -1128,8 +1128,8 @@ cmdVolResize(vshControl *ctl, const vshCmd *cmd)
         ret = true;
     } else {
         vshError(ctl,
-                 delta ? _("Failed to change size of volume '%s' by %s\n")
-                 : _("Failed to change size of volume '%s' to %s\n"),
+                 delta ? _("Failed to change size of volume '%s' by %s")
+                 : _("Failed to change size of volume '%s' to %s"),
                  virStorageVolGetName(vol), capacityStr);
         ret = false;
     }