diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-11-01 03:42:27 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-11-01 03:42:27 +0100 |
commit | a6d537bb6cec25eb27cf8884ca5e3362a86818b3 (patch) | |
tree | acac8aa6554cd6910ec00716b2b3e40bbe4b4fe4 /source3/modules | |
parent | 38d67363aca81b970717c58b07e04396ae9dfd9f (diff) | |
download | samba-a6d537bb6cec25eb27cf8884ca5e3362a86818b3.tar.gz samba-a6d537bb6cec25eb27cf8884ca5e3362a86818b3.tar.bz2 samba-a6d537bb6cec25eb27cf8884ca5e3362a86818b3.zip |
Move sys_realpath() to libreplace.
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_default.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 13c2770208..d972828ba9 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -909,7 +909,7 @@ static char *vfswrap_realpath(vfs_handle_struct *handle, const char *path, char char *result; START_PROFILE(syscall_realpath); - result = sys_realpath(path, resolved_path); + result = realpath(path, resolved_path); END_PROFILE(syscall_realpath); return result; } |