From 0b1b49f99868a18f549dda323e07d5072bc771b5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 31 Jan 2020 16:48:20 -0500 Subject: [PATCH] Fix: directory-handle: typo in equals method breaks compat build MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The 'path' member does not exist in a directory handle; 'base_path' should be used instead. This breaks the build on platforms that lack dirfd support (e.g. Solaris 10). Signed-off-by: Jérémie Galarneau Change-Id: I1cedf36520960c575b470d4306755dfeb9417cb4 --- src/common/compat/directory-handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/compat/directory-handle.c b/src/common/compat/directory-handle.c index f0139be29..9d2fed463 100644 --- a/src/common/compat/directory-handle.c +++ b/src/common/compat/directory-handle.c @@ -591,7 +591,7 @@ LTTNG_HIDDEN bool lttng_directory_handle_equals(const struct lttng_directory_handle *lhs, const struct lttng_directory_handle *rhs) { - return strcmp(lhs->path, rhs->path) == 0; + return strcmp(lhs->base_path, rhs->base_path) == 0; } static -- 2.34.1