diff options
author | Vicente Jimenez Aguilar <googuy@gmail.com> | 2019-06-06 17:12:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-07 09:31:57 +0200 |
commit | 09b25ecc514c92ccc1443a2acc8f38ee081c1775 (patch) | |
tree | f6040101e0888c930324ccbb30f4cf5f53452206 | |
parent | ed042010dc8f6e2a5e1f06db1123b7472bfbf377 (diff) | |
download | busybox-w32-09b25ecc514c92ccc1443a2acc8f38ee081c1775.tar.gz busybox-w32-09b25ecc514c92ccc1443a2acc8f38ee081c1775.tar.bz2 busybox-w32-09b25ecc514c92ccc1443a2acc8f38ee081c1775.zip |
httpd: add svg to built in MIME types list
Signed-off-by: Vicente Jimenez Aguilar <googuy@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/httpd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 3f1e02ec8..b09ac0a2f 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -1726,6 +1726,7 @@ static NOINLINE void send_file_and_exit(const char *url, int what) | |||
1726 | ".jpg.jpeg\0" "image/jpeg\0" | 1726 | ".jpg.jpeg\0" "image/jpeg\0" |
1727 | ".gif\0" "image/gif\0" | 1727 | ".gif\0" "image/gif\0" |
1728 | ".png\0" "image/png\0" | 1728 | ".png\0" "image/png\0" |
1729 | ".svg\0" "image/svg+xml\0" | ||
1729 | /* .css line must be after .c line */ | 1730 | /* .css line must be after .c line */ |
1730 | ".css\0" "text/css\0" | 1731 | ".css\0" "text/css\0" |
1731 | ".wav\0" "audio/wav\0" | 1732 | ".wav\0" "audio/wav\0" |