diff options
author | Kevin Wolf <kwolf@redhat.com> | 2016-04-27 14:18:16 +0200 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 20:03:50 -0600 |
commit | eed9c7703e31b71b9ee7cea7b04b6b89e6f537d4 (patch) | |
tree | 38350fa1a3b8878722babd6e5f5f427cd247a1a9 /block/vvfat.c | |
parent | 4c0938f7f8118a17df896cedbfb215498b564cf2 (diff) | |
download | hqemu-eed9c7703e31b71b9ee7cea7b04b6b89e6f537d4.zip hqemu-eed9c7703e31b71b9ee7cea7b04b6b89e6f537d4.tar.gz |
vvfat: Fix default volume label
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 <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block/vvfat.c')
-rw-r--r-- | block/vvfat.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |