From: Daniel Lezcano Date: Thu, 12 Nov 2009 13:40:14 +0000 (+0100) Subject: Fix abstract af_unix socket name X-Git-Tag: lxc_0_6_4~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=adaeaa992a6a7a6af923416a1c36b63858055533;p=thirdparty%2Flxc.git Fix abstract af_unix socket name Fix a typo making the abstract af_unix socket name to be wrong. Signed-off-by: Daniel Lezcano --- 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) {