diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-24 23:58:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:18 -0500 |
commit | 53415ebf8a6affb08d65cd3b4edc0e55f68b83d7 (patch) | |
tree | 72fc76076400b8baafd2ec6ad65ac89dfbd2680f /source4 | |
parent | 5e122da65593b64dbd6be239e44f540bb35affd7 (diff) | |
download | samba-53415ebf8a6affb08d65cd3b4edc0e55f68b83d7.tar.gz samba-53415ebf8a6affb08d65cd3b4edc0e55f68b83d7.tar.bz2 samba-53415ebf8a6affb08d65cd3b4edc0e55f68b83d7.zip |
r2030: quick hack to allow the simple NTVFS backend to handler base directories with mixed case names
(This used to be commit efecc3306efb17f586b781112886d9416b355d65)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/ntvfs/simple/svfs_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/simple/svfs_util.c b/source4/ntvfs/simple/svfs_util.c index 1949ecb235..14ffc6d19c 100644 --- a/source4/ntvfs/simple/svfs_util.c +++ b/source4/ntvfs/simple/svfs_util.c @@ -41,7 +41,7 @@ char *svfs_unix_path(struct smbsrv_request *req, const char *name) } all_string_sub(ret, "\\", "/", 0); - strlower(ret); + strlower(ret + strlen(private->connectpath)); return ret; } |