aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--url.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 365af88..0f95bdb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
+ * [w3m-dev 02598]
+ * url.c (otherinfo): add missing NULL
+
+2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
+
* [w3m-dev 02597] (based on [w3m-dev 02594] by aito@fw.ipsj.or.jp)
* fm.h (AcceptLang): added
* fm.h (AcceptMedia): added
diff --git a/url.c b/url.c
index 4ab1f24..5818c7d 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.14 2001/11/30 10:49:06 ukai Exp $ */
+/* $Id: url.c,v 1.15 2001/11/30 11:06:25 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -1198,8 +1198,8 @@ otherinfo(ParsedURL *target, ParsedURL *current, char *referer)
Strcat_charp(s, UserAgent);
Strcat_charp(s, "\r\n");
- Strcat_m_charp(s, "Accept: ", AcceptMedia, "\r\n");
- Strcat_m_charp(s, "Accept-Encoding: ", AcceptEncoding, "\r\n");
+ Strcat_m_charp(s, "Accept: ", AcceptMedia, "\r\n", NULL);
+ Strcat_m_charp(s, "Accept-Encoding: ", AcceptEncoding, "\r\n", NULL);
Strcat_charp(s, "Accept-Language: ");
if (AcceptLang != NULL && *AcceptLang != '\0') {