diff options
author | midipix <writeonce@midipix.org> | 2021-04-15 06:41:55 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-15 09:44:27 +0000 |
commit | d385653e04a9455a5c9e34cc9a63c7de375981d7 (patch) | |
tree | 826766dbed097a65054d22a509cdeeb5d2af4328 /src/logic/slbt_exec_uninstall.c | |
parent | e524bdc940fa8826a9d076a9b9cb250d1bad71c4 (diff) | |
download | slibtool-d385653e04a9455a5c9e34cc9a63c7de375981d7.tar.bz2 slibtool-d385653e04a9455a5c9e34cc9a63c7de375981d7.tar.xz |
library: replace all uses of unlink() with unlinkat().
Diffstat (limited to 'src/logic/slbt_exec_uninstall.c')
-rw-r--r-- | src/logic/slbt_exec_uninstall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logic/slbt_exec_uninstall.c b/src/logic/slbt_exec_uninstall.c index b904ef7..7e1d37a 100644 --- a/src/logic/slbt_exec_uninstall.c +++ b/src/logic/slbt_exec_uninstall.c @@ -101,7 +101,7 @@ static int slbt_exec_uninstall_fs_entry( } /* remove file or symlink entry */ - if (unlink(path)) + if (unlinkat(fdcwd,path,0)) return SLBT_SYSTEM_ERROR(dctx,path); /* remove empty containing directory? */ |