From d70b3460fbbcc9acb4a80e1e6fe51d564ae607aa Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Wed, 8 May 2013 13:04:28 +0800 Subject: discover: Don't invert option discovery order Keep options in the order that we discovered them in; this makes testing a little easier, as the options appear in the list in the same order as the config file. Signed-off-by: Jeremy Kerr --- discover/device-handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discover/device-handler.c') 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); } -- cgit v1.2.1