From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59684) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avkFL-000482-6I for qemu-devel@nongnu.org; Thu, 28 Apr 2016 07:36:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1avkFI-00072a-E5 for qemu-devel@nongnu.org; Thu, 28 Apr 2016 07:36:39 -0400 From: Kevin Wolf Date: Thu, 28 Apr 2016 13:36:06 +0200 Message-Id: <1461843366-27217-3-git-send-email-kwolf@redhat.com> In-Reply-To: <1461843366-27217-1-git-send-email-kwolf@redhat.com> References: <1461843366-27217-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH v2 2/2] vvfat: Fix default volume label List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: kwolf@redhat.com, stefanha@redhat.com, w.bumiller@proxmox.com, eblake@redhat.com, mreitz@redhat.com, qemu-devel@nongnu.org Commit d5941dd documented that it leaves the default volume name as it was ("QEMU VVFAT"), but it doesn't actually implement this. You get an empty name (eleven space characters) instead. This fixes the implementation to apply the advertised default. Cc: qemu-stable@nongnu.org Signed-off-by: Kevin Wolf Reviewed-by: Max Reitz --- block/vvfat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/vvfat.c b/block/vvfat.c index ff3df35..183fc4f 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -1109,6 +1109,8 @@ static int vvfat_open(BlockDriverState *bs, QDict *options, int flags, goto fail; } memcpy(s->volume_label, label, label_length); + } else { + memcpy(s->volume_label, "QEMU VVFAT", 10); } if (floppy) { -- 1.8.3.1