summaryrefslogtreecommitdiffstats
path: root/source/smbd/msdfs.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-09-13 22:08:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:44 -0500
commit39c211a702e91c34c1a5a689e1b0c4530ea8a1ac (patch)
tree97f455262927fd73ad38698542f5ac3f6bccbfb1 /source/smbd/msdfs.c
parent54c658867db3b6c602080d60936abab3af26e112 (diff)
downloadsamba-39c211a702e91c34c1a5a689e1b0c4530ea8a1ac.tar.gz
samba-39c211a702e91c34c1a5a689e1b0c4530ea8a1ac.tar.xz
samba-39c211a702e91c34c1a5a689e1b0c4530ea8a1ac.zip
r25138: More pstring elimination. Add a TALLOC_CTX parameter
to unix_convert(). Jeremy.
Diffstat (limited to 'source/smbd/msdfs.c')
-rw-r--r--source/smbd/msdfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/msdfs.c b/source/smbd/msdfs.c
index 5cbe8c68aca..1917eb4d10b 100644
--- a/source/smbd/msdfs.c
+++ b/source/smbd/msdfs.c
@@ -476,7 +476,7 @@ static NTSTATUS dfs_path_lookup(TALLOC_CTX *ctx,
* think this is needed. JRA.
*/
- status = unix_convert(conn, pdp->reqpath, search_flag, &localpath,
+ status = unix_convert(ctx, conn, pdp->reqpath, search_flag, &localpath,
NULL, &sbuf);
if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status,
NT_STATUS_OBJECT_PATH_NOT_FOUND)) {