From 53415ebf8a6affb08d65cd3b4edc0e55f68b83d7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 24 Aug 2004 23:58:00 +0000 Subject: r2030: quick hack to allow the simple NTVFS backend to handler base directories with mixed case names (This used to be commit efecc3306efb17f586b781112886d9416b355d65) --- source4/ntvfs/simple/svfs_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/ntvfs/simple/svfs_util.c') 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; } -- cgit