summaryrefslogtreecommitdiff
path: root/source3/web
diff options
context:
space:
mode:
Diffstat (limited to 'source3/web')
-rw-r--r--source3/web/cgi.c2
1 files changed, 2 insertions, 0 deletions
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");
}