summaryrefslogtreecommitdiff
path: root/source3/web/cgi.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-04-11 07:14:12 +0000
committerAndrew Tridgell <tridge@samba.org>2000-04-11 07:14:12 +0000
commitcdf223083fed0f35549071d141f6257c4a660ca2 (patch)
tree944304b2e2a03fb45bde5fd2572a73faceb13e70 /source3/web/cgi.c
parent416fa5377bfca53f21b1fe9c1a71c7ca255abeb2 (diff)
downloadsamba-cdf223083fed0f35549071d141f6257c4a660ca2.tar.gz
samba-cdf223083fed0f35549071d141f6257c4a660ca2.tar.bz2
samba-cdf223083fed0f35549071d141f6257c4a660ca2.zip
two minor bugfixes for SCO UnixWare. The first is to catch SIGPIPE so that putmsg() inside their send() doesn't kill swat and the scond is to open /dev/null to replace stdin after we close that
(This used to be commit d35bbe56bc9e3e5896b2ebdf33ff6468a0432e1f)
Diffstat (limited to 'source3/web/cgi.c')
-rw-r--r--source3/web/cgi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c
index 62a5e71e05..b33feb30c2 100644
--- a/source3/web/cgi.c
+++ b/source3/web/cgi.c
@@ -198,6 +198,7 @@ void cgi_load_variables(FILE *f1)
}
fclose(stdin);
+ open("/dev/null", O_RDWR);
if ((s=query_string) || (s=getenv("QUERY_STRING"))) {
for (tok=strtok(s,"&;");tok;tok=strtok(NULL,"&;")) {