aboutsummaryrefslogtreecommitdiffstats
path: root/libmount/src
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2025-07-01 11:01:40 +0200
committerKarel Zak <kzak@redhat.com>2025-08-26 13:56:08 +0200
commitb9f21dbd37cf149bff7ded948c69eca86ce5aa88 (patch)
tree5244c69049dc6c62844e169532708373386f5c99 /libmount/src
parentc42f264120d9c12bdf4df0b31481b49b33540f68 (diff)
downloadutil-linux-b9f21dbd37cf149bff7ded948c69eca86ce5aa88.tar.gz
lib/canonicalize: rename to ul_absolute_path()
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src')
-rw-r--r--libmount/src/tab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmount/src/tab.c b/libmount/src/tab.c
index 4209d697a5..9535dd7515 100644
--- a/libmount/src/tab.c
+++ b/libmount/src/tab.c
@@ -1161,7 +1161,7 @@ struct libmnt_fs *mnt_table_find_target(struct libmnt_table *tb, const char *pat
}
/* try absolute path */
- if (is_relative_path(path) && (cn = absolute_path(path))) {
+ if (is_relative_path(path) && (cn = ul_absolute_path(path))) {
DBG(TAB, ul_debugobj(tb, "lookup absolute TARGET: '%s'", cn));
mnt_reset_iter(&itr, direction);
while (mnt_table_next_fs(tb, &itr, &fs) == 0) {