1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-31 20:22:15 +03:00

Move sys_lchown() to libreplace.

This commit is contained in:
Jelmer Vernooij
2008-11-01 03:39:20 +01:00
parent e8cda43e17
commit 38d67363ac
8 changed files with 16 additions and 23 deletions

View File

@ -621,7 +621,7 @@ static int vfswrap_lchown(vfs_handle_struct *handle, const char *path, uid_t uid
int result;
START_PROFILE(syscall_lchown);
result = sys_lchown(path, uid, gid);
result = lchown(path, uid, gid);
END_PROFILE(syscall_lchown);
return result;
}