diff options
-rw-r--r-- | discover/device-handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discover/device-handler.c b/discover/device-handler.c index 9e4c5bb..0fc6d75 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -171,7 +171,7 @@ void discover_context_add_boot_option(struct discover_context *ctx, struct discover_boot_option *boot_option) { boot_option->source = ctx->parser; - list_add(&ctx->boot_options, &boot_option->list); + list_add_tail(&ctx->boot_options, &boot_option->list); talloc_steal(ctx, boot_option); } |