summaryrefslogtreecommitdiffstats
path: root/source/smbd/filename.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/filename.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/filename.c')
-rw-r--r--source/smbd/filename.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/smbd/filename.c b/source/smbd/filename.c
index 27f17f96283..f15c1077117 100644
--- a/source/smbd/filename.c
+++ b/source/smbd/filename.c
@@ -107,7 +107,8 @@ stat struct will be filled with zeros (and this can be detected by checking
for nlinks = 0, which can never be true for any file).
****************************************************************************/
-NTSTATUS unix_convert(connection_struct *conn,
+NTSTATUS unix_convert(TALLOC_CTX *ctx,
+ connection_struct *conn,
const char *orig_path,
BOOL allow_wcard_last_component,
char **pp_conv_path,
@@ -121,7 +122,6 @@ NTSTATUS unix_convert(connection_struct *conn,
BOOL component_was_mangled = False;
BOOL name_has_wildcard = False;
NTSTATUS result;
- TALLOC_CTX *ctx = talloc_tos();
SET_STAT_INVALID(*pst);
*pp_conv_path = NULL;