aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-04-17 02:32:13 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-04-17 02:32:13 +0000
commit576f325c86f171acef42500a356a22a88459e0b6 (patch)
tree497d3ef2461d30280dee98aa9d474c270494515b /file.c
parent[w3m-dev 03169] Can't calculate table height if number of cells > 20. (diff)
downloadw3m-576f325c86f171acef42500a356a22a88459e0b6.tar.gz
w3m-576f325c86f171acef42500a356a22a88459e0b6.zip
[w3m-dev 03176] no Content-Type in http response header
* file.c (loadGeneralFile): guess content-type from filename From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/file.c b/file.c
index 89d96a8..8fd7d2f 100644
--- a/file.c
+++ b/file.c
@@ -1,4 +1,4 @@
-/* $Id: file.c,v 1.89 2002/04/09 14:45:58 ukai Exp $ */
+/* $Id: file.c,v 1.90 2002/04/17 02:32:13 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -1634,6 +1634,8 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer,
#endif
readHeader(&f, t_buf, FALSE, &pu);
t = checkContentType(t_buf);
+ if (t == NULL && pu.file != NULL)
+ t = guessContentType(pu.file);
if (t == NULL)
t = "text/plain";
if (http_response_code >= 301 && http_response_code <= 303