From: Shanzhi Yu Date: Wed, 3 Dec 2014 07:53:38 +0000 (+0800) Subject: virsh: vol-upload disallow negative offset X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=cd53d947eff4aeebc8b534f874431f3fd2c0cf67;p=libvirt.git virsh: vol-upload disallow negative offset Commit 570d0f63 describes disabling negative offset usage for vol-upload/download (e.g. cmdVolDownload and cmdVolUpload; however, the change was only made to cmdVolDownload. There was no change to cmdVolUpload. This patch adds the same checks for vol-upload. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1087104 Signed-off-by: Shanzhi Yu --- diff --git a/tools/virsh-volume.c b/tools/virsh-volume.c index 27bd81d30c..d585ee272d 100644 --- a/tools/virsh-volume.c +++ b/tools/virsh-volume.c @@ -677,13 +677,13 @@ cmdVolUpload(vshControl *ctl, const vshCmd *cmd) const char *name = NULL; unsigned long long offset = 0, length = 0; - if (vshCommandOptULongLongWrap(cmd, "offset", &offset) < 0) { - vshError(ctl, _("Unable to parse integer")); + if (vshCommandOptULongLong(cmd, "offset", &offset) < 0) { + vshError(ctl, _("Unable to parse offset value")); return false; } if (vshCommandOptULongLongWrap(cmd, "length", &length) < 0) { - vshError(ctl, _("Unable to parse integer")); + vshError(ctl, _("Unable to parse length value")); return false; }