diff options
author | Tim Prouty <tprouty@samba.org> | 2009-04-07 00:56:50 +0000 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-04-07 10:44:50 -0700 |
commit | 161bd7f78fd10e4f850dc3ef1ba3df53c43eae30 (patch) | |
tree | b381b16b27ef9d8f26e0d54fce52c26c13510434 /source3/modules | |
parent | 785c19182ba7c0cc15502ee89f2c3ca1cfb1c5e7 (diff) | |
download | samba-161bd7f78fd10e4f850dc3ef1ba3df53c43eae30.tar.gz samba-161bd7f78fd10e4f850dc3ef1ba3df53c43eae30.tar.bz2 samba-161bd7f78fd10e4f850dc3ef1ba3df53c43eae30.zip |
s3 onefs: Fix case-insensitivity for mangled names
onefs_get_real_filename needs to demangle the filename before doing
the case-insensitive estat
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_onefs.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/modules/vfs_onefs.c b/source3/modules/vfs_onefs.c index ad59c2b32d..e4a0febbec 100644 --- a/source3/modules/vfs_onefs.c +++ b/source3/modules/vfs_onefs.c @@ -153,10 +153,21 @@ static int onefs_get_real_filename(vfs_handle_struct *handle, const char *path, char **found_name) { SMB_STRUCT_STAT sb; + struct connection_struct *conn = handle->conn; struct stat_extra se; int result; + char *unmangled_name = NULL; char *full_name = NULL; + /* First demangle the name if necessary. */ + if (!conn->case_sensitive && mangle_is_mangled(name, conn->params) && + mangle_lookup_name_from_8_3(mem_ctx, name, &unmangled_name, + conn->params)) { + /* Name is now unmangled. */ + name = unmangled_name; + } + + /* Do the case insensitive stat. */ ZERO_STRUCT(se); se.se_version = ESTAT_CURRENT_VERSION; se.se_flags = ESTAT_CASE_INSENSITIVE | ESTAT_SYMLINK_NOFOLLOW; @@ -184,6 +195,7 @@ static int onefs_get_real_filename(vfs_handle_struct *handle, const char *path, done: TALLOC_FREE(full_name); + TALLOC_FREE(unmangled_name); return result; } |