summaryrefslogtreecommitdiffstats
path: root/softmmu/bootdevice.c
diff options
context:
space:
mode:
Diffstat (limited to 'softmmu/bootdevice.c')
-rw-r--r--softmmu/bootdevice.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/softmmu/bootdevice.c b/softmmu/bootdevice.c
index c0713bfa9f..2106f1026f 100644
--- a/softmmu/bootdevice.c
+++ b/softmmu/bootdevice.c
@@ -268,7 +268,8 @@ char *get_boot_devices_list(size_t *size)
*size = total;
- if (boot_strict && *size > 0) {
+ if (current_machine->boot_config.has_strict &&
+ current_machine->boot_config.strict && *size > 0) {
list[total-1] = '\n';
list = g_realloc(list, total + 5);
memcpy(&list[total], "HALT", 5);