From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aw5Rp-0006Xm-7O for qemu-devel@nongnu.org; Fri, 29 Apr 2016 06:15:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aw5Rd-0008E4-Je for qemu-devel@nongnu.org; Fri, 29 Apr 2016 06:14:51 -0400 From: Kevin Wolf Date: Fri, 29 Apr 2016 11:55:28 +0200 Message-Id: <1461923728-23602-3-git-send-email-kwolf@redhat.com> In-Reply-To: <1461923728-23602-1-git-send-email-kwolf@redhat.com> References: <1461923728-23602-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 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, peter.maydell@linaro.org, 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 Reviewed-by: Markus Armbruster Reviewed-by: Stefan Hajnoczi --- 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