diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-01-07 16:57:18 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-01-07 16:57:18 +0000 |
commit | 27288f8ff6c19d521627d887d376375b12652cdb (patch) | |
tree | 6e9a810568c1ec834c34f5c6d812eb69ce63f11e /usr.sbin/httpd | |
parent | 3a35f6b2b6c63fbf9536796fc5399f81f30fa292 (diff) |
SVG is common enough to add it to the default types.
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/http.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/httpd/http.h b/usr.sbin/httpd/http.h index c03c5d5cace..54684fd7368 100644 --- a/usr.sbin/httpd/http.h +++ b/usr.sbin/httpd/http.h @@ -1,4 +1,4 @@ -/* $OpenBSD: http.h,v 1.9 2014/09/29 19:30:47 deraadt Exp $ */ +/* $OpenBSD: http.h,v 1.10 2015/01/07 16:57:17 reyk Exp $ */ /* * Copyright (c) 2012 - 2014 Reyk Floeter <reyk@openbsd.org> @@ -218,6 +218,7 @@ struct http_mediatype { { "jpeg", "image", "jpeg" }, \ { "jpg", "image", "jpeg" }, \ { "png", "image", "png" }, \ + { "svg", "image", "svg+xml" }, \ { "js", "application", "javascript" }, \ { NULL } \ } |