1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-10 13:57:47 +03:00

r2030: quick hack to allow the simple NTVFS backend to handler base directories with mixed case names

This commit is contained in:
Andrew Tridgell 2004-08-24 23:58:00 +00:00 committed by Gerald (Jerry) Carter
parent 271831f97f
commit efecc3306e

View File

@ -41,7 +41,7 @@ char *svfs_unix_path(struct smbsrv_request *req, const char *name)
} }
all_string_sub(ret, "\\", "/", 0); all_string_sub(ret, "\\", "/", 0);
strlower(ret); strlower(ret + strlen(private->connectpath));
return ret; return ret;
} }