mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
Fix generation of floppy disk arg for QEMU's -global arg
* src/qemu/qemu_conf.c: Fix ',' vs '.' typo in floppy disk arg
This commit is contained in:
@@ -3521,7 +3521,7 @@ int qemudBuildCommandLine(virConnectPtr conn,
|
||||
char *fdc;
|
||||
ADD_ARG_LIT("-global");
|
||||
|
||||
if (virAsprintf(&fdc, "isa-fdc,drive%c=drive-%s",
|
||||
if (virAsprintf(&fdc, "isa-fdc.drive%c=drive-%s",
|
||||
disk->info.addr.drive.unit ? 'B' : 'A',
|
||||
disk->info.alias) < 0)
|
||||
goto no_memory;
|
||||
|
||||
Reference in New Issue
Block a user