diff options
author | Tim Prouty <tprouty@samba.org> | 2009-07-24 18:38:40 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-07-24 18:51:41 -0700 |
commit | f49f3fcb0127b6ed19fec94f93658180ead04ac5 (patch) | |
tree | 0a954660d72ff5e03b6a370f3e6bad68d0ce6f74 /source3/smbd/msdfs.c | |
parent | 7197ba3abd6dfad74a28d5e3f8a73367ab22810b (diff) | |
download | samba-f49f3fcb0127b6ed19fec94f93658180ead04ac5.tar.gz samba-f49f3fcb0127b6ed19fec94f93658180ead04ac5.tar.xz samba-f49f3fcb0127b6ed19fec94f93658180ead04ac5.zip |
s3: Convert a few callers of unix_convert() over to filename_convert()
This patch also changes the unix convert flags to make sure the
correct semantics are preservered for allowing/disallowing wildcards
in the last component of the path.
Diffstat (limited to 'source3/smbd/msdfs.c')
-rw-r--r-- | source3/smbd/msdfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c index f4376d49ced..22fb8c3ad69 100644 --- a/source3/smbd/msdfs.c +++ b/source3/smbd/msdfs.c @@ -544,7 +544,7 @@ static NTSTATUS dfs_path_lookup(TALLOC_CTX *ctx, */ status = unix_convert(ctx, conn, pdp->reqpath, &smb_fname, - search_flag ? UCF_ALLOW_WCARD_LCOMP : 0); + search_flag ? UCF_ALWAYS_ALLOW_WCARD_LCOMP : 0); if (!NT_STATUS_IS_OK(status)) { if (!NT_STATUS_EQUAL(status, |