From 188b94012b33f0e225d3fff89813d96ca13dbe05 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 13:00:10 +0100 Subject: s3: "cgi_download" only looks at the mode and size --- source3/web/cgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/web') 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"); } -- cgit