summaryrefslogtreecommitdiffstats
path: root/source/smbd
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-09-17 12:09:46 +0000
committerAndrew Tridgell <tridge@samba.org>2002-09-17 12:09:46 +0000
commit3401c3616b3dcb99053f89d88f8e351c986c9096 (patch)
treea7d6dae453dc00eb128ebe59a49900f462b7bf6e /source/smbd
parentdfa85f9c48aa3c8d93775df6b6ad2dec9a1692d7 (diff)
downloadsamba-3401c3616b3dcb99053f89d88f8e351c986c9096.tar.gz
samba-3401c3616b3dcb99053f89d88f8e351c986c9096.tar.xz
samba-3401c3616b3dcb99053f89d88f8e351c986c9096.zip
disable stat cache when case sensitive
Diffstat (limited to 'source/smbd')
-rw-r--r--source/smbd/filename.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/filename.c b/source/smbd/filename.c
index ce98af4ace5..d343db26f6b 100644
--- a/source/smbd/filename.c
+++ b/source/smbd/filename.c
@@ -168,7 +168,7 @@ BOOL unix_convert(pstring name,connection_struct *conn,char *saved_last_componen
pstrcpy(orig_path, name);
- if(stat_cache_lookup(conn, name, dirpath, &start, &st)) {
+ if(!case_sensitive && stat_cache_lookup(conn, name, dirpath, &start, &st)) {
*pst = st;
return True;
}