diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-27 13:00:10 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-29 11:22:03 +0100 |
commit | 188b94012b33f0e225d3fff89813d96ca13dbe05 (patch) | |
tree | ae5fb80321abb4f46ec7c89356b967e0f78109de /source3/web | |
parent | b1a0c68ff2408081e10dc29ebe745a51cda3b73a (diff) | |
download | samba-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.c | 2 |
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"); } |