Skip to content

Commit

Permalink
Merge pull request #614 from alkino/master
Browse files Browse the repository at this point in the history
Fix error message when cannot find an lxc-init
  • Loading branch information
stgraber committed Aug 5, 2015
2 parents e00f9e4 + 1e1d1dc commit 061ed04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/execute.c
Expand Up @@ -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;
Expand Down

0 comments on commit 061ed04

Please sign in to comment.