summaryrefslogtreecommitdiff
path: root/src/output
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-02-19 03:19:54 +0000
committermidipix <writeonce@midipix.org>2024-02-19 03:19:54 +0000
commit81e06363fd5be411ff34013f1024664f68f66a12 (patch)
treea15b0acdc884f37b9c3eedd0246a4fd262c70622 /src/output
parent4373b876273680b58ab1745a203b8bfc53f1de9d (diff)
downloadslibtool-81e06363fd5be411ff34013f1024664f68f66a12.tar.bz2
slibtool-81e06363fd5be411ff34013f1024664f68f66a12.tar.xz
utility api's: renamed slbt_util_realpath() --> slbt_util_real_path().
Diffstat (limited to 'src/output')
-rw-r--r--src/output/slbt_output_fdcwd.c4
1 files changed, 2 insertions, 2 deletions
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));