diff options
Diffstat (limited to 'src/logic/slbt_exec_uninstall.c')
-rw-r--r-- | src/logic/slbt_exec_uninstall.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/logic/slbt_exec_uninstall.c b/src/logic/slbt_exec_uninstall.c index 182bc8d..c0aa87f 100644 --- a/src/logic/slbt_exec_uninstall.c +++ b/src/logic/slbt_exec_uninstall.c @@ -82,12 +82,12 @@ static int slbt_exec_uninstall_fs_entry( return 0; else - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,path); } /* remove file or symlink entry */ if (unlink(path)) - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,path); /* remove empty containing directory? */ if (flags & SLBT_UNINSTALL_RMDIR) { @@ -100,7 +100,7 @@ static int slbt_exec_uninstall_fs_entry( *slash = 0; if (rmdir(dpath)) - return SLBT_SYSTEM_ERROR(dctx); + return SLBT_SYSTEM_ERROR(dctx,dpath); } return 0; |