From e5e43b553ee12af1add965804dc32d63f5fa2f1e Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 1 Sep 2000 02:06:20 +0000 Subject: Fix for swat to return correct MIME type for text files. From "Ron Alexander" (This used to be commit 061e5e50523913a26bc86bd816c4e26a37a832c7) --- source3/web/cgi.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/web') diff --git a/source3/web/cgi.c b/source3/web/cgi.c index ea73a0f1a7..4f44d10afc 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -451,6 +451,8 @@ static void cgi_download(char *file) printf("Content-Type: image/gif\r\n"); } else if (strcmp(p,".jpg")==0) { printf("Content-Type: image/jpeg\r\n"); + } else if (strcmp(p,".txt")==0) { + printf("Content-Type: text/plain\r\n"); } else { printf("Content-Type: text/html\r\n"); } -- cgit