Fixes error because of missing autoconf.h when building os11.2 Factory. - bnc#609153 - xm migrate <domain_name> localhost -l fails on Windows VMs 21615-dont-save-xen-heap-pages.patch - Upstream fixes from Jan 21446-iommu-graceful-generic-fail.patch 21453-shadow-avoid-remove-all-after-teardown.patch 21456-compat-hvm-addr-check.patch 21492-x86-pirq-unbind.patch 21526-x86-nehalem-cpuid-mask.patch 21620-x86-signed-domain-irq.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=59
15 lines
614 B
Diff
15 lines
614 B
Diff
Index: xen-4.0.0-testing/tools/ioemu-remote/block-vvfat.c
|
|
===================================================================
|
|
--- xen-4.0.0-testing.orig/tools/ioemu-remote/block-vvfat.c
|
|
+++ xen-4.0.0-testing/tools/ioemu-remote/block-vvfat.c
|
|
@@ -865,7 +865,8 @@ static int init_directories(BDRVVVFATSta
|
|
{
|
|
direntry_t* entry=array_get_next(&(s->directory));
|
|
entry->attributes=0x28; /* archive | volume label */
|
|
- snprintf((char*)entry->name,11,"QEMU VVFAT");
|
|
+ memcpy(entry->name,"QEMU VVF",8);
|
|
+ memcpy(entry->extension,"AT ",3);
|
|
}
|
|
|
|
/* Now build FAT, and write back information into directory */
|