summaryrefslogtreecommitdiffstats
path: root/discover
diff options
context:
space:
mode:
Diffstat (limited to 'discover')
-rw-r--r--discover/device-handler.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/discover/device-handler.c b/discover/device-handler.c
index d95a37c..64095f1 100644
--- a/discover/device-handler.c
+++ b/discover/device-handler.c
@@ -830,7 +830,7 @@ int device_handler_dhcp(struct device_handler *handler,
int device_handler_conf(struct device_handler *handler,
struct discover_device *dev, struct pb_url *url)
{
- struct discover_context *ctx;
+ struct discover_context *ctx;
struct boot_status *status;
status = talloc_zero(handler, struct boot_status);
@@ -838,22 +838,22 @@ int device_handler_conf(struct device_handler *handler,
status->message = talloc_asprintf(status, "Processing user config");
boot_status(handler, status);
- /* create our context */
- ctx = device_handler_discover_context_create(handler, dev);
- ctx->conf_url = url;
+ /* create our context */
+ ctx = device_handler_discover_context_create(handler, dev);
+ ctx->conf_url = url;
- iterate_parsers(ctx);
+ iterate_parsers(ctx);
- device_handler_discover_context_commit(handler, ctx);
+ device_handler_discover_context_commit(handler, ctx);
status->message = talloc_asprintf(status,
"Processing user config complete");
boot_status(handler, status);
talloc_free(status);
- talloc_free(ctx);
+ talloc_free(ctx);
- return 0;
+ return 0;
}
static struct discover_boot_option *find_boot_option_by_id(
OpenPOWER on IntegriCloud