From 46fcd85b2dbe32c0f78a9382f8c3e2db92416391 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 26 Oct 1998 10:55:29 +0000 Subject: report ourselves as HTTP/1.0 not HTTP/1.1 (This used to be commit b2210614e810c8e84c9a14a8e32e05f95d92479b) --- source3/web/cgi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/web/cgi.c b/source3/web/cgi.c index bf99a67a04..38be0de3c6 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -251,7 +251,7 @@ tell a browser about a fatal error in the http processing ***************************************************************************/ static void cgi_setup_error(char *err, char *header, char *info) { - printf("HTTP/1.1 %s\r\n%sConnection: close\r\nContent-Type: text/html\r\n\r\n%s

%s

%s

\r\n", err, header, err, err, info); + printf("HTTP/1.0 %s\r\n%sConnection: close\r\nContent-Type: text/html\r\n\r\n%s

%s

%s

\r\n", err, header, err, err, info); exit(0); } @@ -349,7 +349,7 @@ static void cgi_download(char *file) cgi_setup_error("404 File Not Found","", "The requested file was not found"); } - printf("HTTP/1.1 200 OK\r\n"); + printf("HTTP/1.0 200 OK\r\n"); if ((p=strrchr(file,'.'))) { if (strcmp(p,".gif")==0) { printf("Content-Type: image/gif\r\n"); @@ -458,7 +458,7 @@ void cgi_setup(char *rootdir, int auth_required) cgi_download(url); } - printf("HTTP/1.1 200 OK\r\nConnection: close\r\n"); + printf("HTTP/1.0 200 OK\r\nConnection: close\r\n"); printf("Date: %s\r\n", http_timestring(time(NULL))); baseurl = ""; pathinfo = url+1; -- cgit