From 81e06363fd5be411ff34013f1024664f68f66a12 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 19 Feb 2024 03:19:54 +0000 Subject: utility api's: renamed slbt_util_realpath() --> slbt_util_real_path(). --- src/output/slbt_output_fdcwd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/output') diff --git a/src/output/slbt_output_fdcwd.c b/src/output/slbt_output_fdcwd.c index fa7e8a7..1d07892 100644 --- a/src/output/slbt_output_fdcwd.c +++ b/src/output/slbt_output_fdcwd.c @@ -36,7 +36,7 @@ static int slbt_output_fdcwd_plain(const struct slbt_driver_ctx * dctx) sprintf(scwd,"%d",fdcwd); } - if (slbt_util_realpath(fdcwd,".",0,path,sizeof(path)) < 0) { + if (slbt_util_real_path(fdcwd,".",0,path,sizeof(path)) < 0) { ferror = 1; memset(path,0,sizeof(path)); strerror_r(errno,path,sizeof(path)); @@ -72,7 +72,7 @@ static int slbt_output_fdcwd_annotated(const struct slbt_driver_ctx * dctx) sprintf(scwd,"%d",fdcwd); } - if (slbt_util_realpath(fdcwd,".",0,path,sizeof(path)) < 0) { + if (slbt_util_real_path(fdcwd,".",0,path,sizeof(path)) < 0) { ferror = 1; memset(path,0,sizeof(path)); strerror_r(errno,path,sizeof(path)); -- cgit v1.2.3