From 1e1d1dcaf62d3aea10741faa073ad1cb6488cf9f Mon Sep 17 00:00:00 2001 From: Nicolas Cornu Date: Wed, 5 Aug 2015 09:22:24 +0200 Subject: [PATCH] Fix error message when cannot find an lxc-init lxc-init has been renamed init.lxc so adapt error message Signed-off-by: Nicolas Cornu --- src/lxc/execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/execute.c b/src/lxc/execute.c index d14092af5..cfc81a761 100644 --- a/src/lxc/execute.c +++ b/src/lxc/execute.c @@ -64,7 +64,7 @@ static int execute_start(struct lxc_handler *handler, void* data) initpath = choose_init(NULL); if (!initpath) { - ERROR("Failed to find an lxc-init"); + ERROR("Failed to find an lxc-init or init.lxc"); goto out2; } argv[i++] = initpath;