From adaeaa992a6a7a6af923416a1c36b63858055533 Mon Sep 17 00:00:00 2001 From: Daniel Lezcano Date: Thu, 12 Nov 2009 14:40:14 +0100 Subject: [PATCH] Fix abstract af_unix socket name Fix a typo making the abstract af_unix socket name to be wrong. Signed-off-by: Daniel Lezcano --- src/lxc/commands.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lxc/commands.c b/src/lxc/commands.c index 864cdb35f..e0ca34872 100644 --- a/src/lxc/commands.c +++ b/src/lxc/commands.c @@ -35,6 +35,7 @@ #include "commands.h" #include "mainloop.h" #include "af_unix.h" +#include "config.h" /* * This file provides the different functions to have the client @@ -52,7 +53,7 @@ lxc_log_define(lxc_commands, lxc); -#define abstractname "LXCPATH/%s/command" +#define abstractname LXCPATH "/%s/command" static int receive_answer(int sock, struct lxc_answer *answer) { -- 2.47.3