diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-30 14:06:27 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-30 14:06:27 +0000 |
commit | ecf09ea77a2a657ccd2116557d9963fb54f1657c (patch) | |
tree | b6591de1f256ae670ceef11bb23017fba5ce3503 /url.c | |
parent | run make indent (diff) | |
download | w3m-ecf09ea77a2a657ccd2116557d9963fb54f1657c.tar.gz w3m-ecf09ea77a2a657ccd2116557d9963fb54f1657c.zip |
modify AcceptLang
Diffstat (limited to 'url.c')
-rw-r--r-- | url.c | 15 |
1 files changed, 2 insertions, 13 deletions
@@ -1,4 +1,4 @@ -/* $Id: url.c,v 1.15 2001/11/30 11:06:25 ukai Exp $ */ +/* $Id: url.c,v 1.16 2001/11/30 14:06:27 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include <sys/socket.h> @@ -1200,19 +1200,8 @@ otherinfo(ParsedURL *target, ParsedURL *current, char *referer) Strcat_m_charp(s, "Accept: ", AcceptMedia, "\r\n", NULL); Strcat_m_charp(s, "Accept-Encoding: ", AcceptEncoding, "\r\n", NULL); + Strcat_m_charp(s, "Accept-Language: ", AcceptLang, "\r\n", NULL); - Strcat_charp(s, "Accept-Language: "); - if (AcceptLang != NULL && *AcceptLang != '\0') { - Strcat_charp(s, AcceptLang); - Strcat_charp(s, "\r\n"); - } - else { -#if LANG == JA - Strcat_charp(s, "ja; q=1.0, en; q=0.5\r\n"); -#else /* LANG != JA (must be EN) */ - Strcat_charp(s, "en; q=1.0\r\n"); -#endif /* LANG != JA */ - } if (target->host) { Strcat_charp(s, "Host: "); Strcat_charp(s, target->host); |