summaryrefslogtreecommitdiff
path: root/source3/web
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-11-27 13:00:10 +0100
committerVolker Lendecke <vl@samba.org>2009-11-29 11:22:03 +0100
commit188b94012b33f0e225d3fff89813d96ca13dbe05 (patch)
treeae5fb80321abb4f46ec7c89356b967e0f78109de /source3/web
parentb1a0c68ff2408081e10dc29ebe745a51cda3b73a (diff)
downloadsamba-188b94012b33f0e225d3fff89813d96ca13dbe05.tar.gz
samba-188b94012b33f0e225d3fff89813d96ca13dbe05.tar.bz2
samba-188b94012b33f0e225d3fff89813d96ca13dbe05.zip
s3: "cgi_download" only looks at the mode and size
Diffstat (limited to 'source3/web')
-rw-r--r--source3/web/cgi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c
index d81970746e..48e75aee56 100644
--- a/source3/web/cgi.c
+++ b/source3/web/cgi.c
@@ -442,7 +442,7 @@ static void cgi_download(char *file)
}
}
- if (sys_stat(file, &st, lp_fake_dir_create_times()) != 0) {
+ if (sys_stat(file, &st, false) != 0) {
cgi_setup_error("404 File Not Found","",
"The requested file was not found");
}