From 8b2ebe11933cba4ebc1209465adaf2e8be39a649 Mon Sep 17 00:00:00 2001 From: Jusung Son Date: Fri, 15 Nov 2019 11:43:17 +0900 Subject: [PATCH] Fix dlog format Change-Id: Ie752e0ab1fdfd919717ebe8ba85eac483ec079f3 Signed-off-by: Jusung Son --- daemon/socks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/socks.c b/daemon/socks.c index b17dc31..558381a 100644 --- a/daemon/socks.c +++ b/daemon/socks.c @@ -209,7 +209,7 @@ int sock_get_client_label(int fd, char **label) */ if (r == 0 && sizeof(buf) > len) { *label = strdup(buf); - bxt_dbg("Client %d: Label '%s'", fd, label); + bxt_dbg("Client %d: Label '%s'", fd, *label); return BUXTON_ERROR_NONE; } else if (errno != ERANGE) { bxt_err("Client %d: get SO_PEERSEC: %d", fd, errno); -- 2.7.4