diff options
author | Denys Vlasenko | 2019-06-07 12:32:30 +0200 |
---|---|---|
committer | Denys Vlasenko | 2019-06-07 12:32:30 +0200 |
commit | 1230aec77a4034637ab6c95db6f8148c1d0df5e0 (patch) | |
tree | 72cfa32aa2938bd078ba1966dd8ad69cb54334a4 | |
parent | a5c5dc6f0b96f9ef8c567f40388d91d44aec1eb7 (diff) | |
download | busybox-1230aec77a4034637ab6c95db6f8148c1d0df5e0.zip busybox-1230aec77a4034637ab6c95db6f8148c1d0df5e0.tar.gz |
httpd: .js is "application/javascript", not "application/x-javascript"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 9d41302..a0a4abc 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1729,7 +1729,7 @@ static NOINLINE void send_file_and_exit(const char *url, int what) ".svg\0" "image/svg+xml\0" /* .css line must be after .c line */ ".css\0" "text/css\0" - ".js\0" "application/x-javascript\0" + ".js\0" "application/javascript\0" ".wav\0" "audio/wav\0" ".avi\0" "video/x-msvideo\0" ".qt.mov\0" "video/quicktime\0" |