From: Jérémie Galarneau Date: Fri, 23 Jul 2021 20:56:53 +0000 (-0400) Subject: Fix: relayd: erroneous rundir permission logging message X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=f7b09ec2e508a12b853be4f0f62f1bba117559e1 Fix: relayd: erroneous rundir permission logging message Signed-off-by: Jérémie Galarneau Change-Id: I2eb0901896feab684d397aa43f8c9036018d9c95 --- diff --git a/src/bin/lttng-relayd/health-relayd.cpp b/src/bin/lttng-relayd/health-relayd.cpp index 2e532bde4..265c70d2e 100644 --- a/src/bin/lttng-relayd/health-relayd.cpp +++ b/src/bin/lttng-relayd/health-relayd.cpp @@ -114,7 +114,7 @@ static int create_lttng_rundir_with_perm(const char *rundir) ret = chmod(rundir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); if (ret < 0) { - ERR("Unable to set permissions on %s", health_unix_sock_path); + ERR("Unable to set permissions on %s", rundir); PERROR("chmod"); ret = -1; goto error;