summaryrefslogtreecommitdiffstats
path: root/source/web/cgi.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-11-17 20:50:07 +0000
committerJeremy Allison <jra@samba.org>1998-11-17 20:50:07 +0000
commit18ff93a9abbf68ee8c59c0af3e57c63e4a015dac (patch)
tree4ac25cab78948bd6a334a552d884869443d2d8c2 /source/web/cgi.c
parent2a98135bbc759ab334d76cce98ea673871445db1 (diff)
downloadsamba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.tar.gz
samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.tar.xz
samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.zip
Added the same open()/fopen()/creat()/mmap() -> sys_XXX calls.
Tidied up some of the mess (no other word for it). Still doesn't compile cleanly. There are calls with incorrect parameters that don't seem to be doing the right thing. This code still needs surgery :-(. Jeremy.
Diffstat (limited to 'source/web/cgi.c')
-rw-r--r--source/web/cgi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/web/cgi.c b/source/web/cgi.c
index db2cfb4555a..009244e5957 100644
--- a/source/web/cgi.c
+++ b/source/web/cgi.c
@@ -437,7 +437,7 @@ static void cgi_download(char *file)
cgi_setup_error("404 File Not Found","",
"The requested file was not found");
}
- fd = open(file,O_RDONLY);
+ fd = sys_open(file,O_RDONLY,0);
if (fd == -1) {
cgi_setup_error("404 File Not Found","",
"The requested file was not found");
@@ -493,7 +493,7 @@ void cgi_setup(char *rootdir, int auth_required)
inetd_server = True;
#if CGI_LOGGING
- f = fopen("/tmp/cgi.log", "a");
+ f = sys_fopen("/tmp/cgi.log", "a");
if (f) fprintf(f,"\n[Date: %s %s (%s)]\n",
http_timestring(time(NULL)),
client_name(1), client_addr(1));