about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-01-25 23:35:20 +0000
committerThomas E. Dickey <dickey@invisible-island.net>2019-01-25 23:35:20 +0000
commit6e64c0cd63430e17d7cd8ae53fbf04b4f63f3c7d (patch)
tree1ce965d269f77311d8a07fef8aac53d5f418c511 /WWW/Library/Implementation
parente7901ddb0a5d4c0a607d45d8f73b21243e96bae3 (diff)
downloadlynx-snapshots-6e64c0cd63430e17d7cd8ae53fbf04b4f63f3c7d.tar.gz
snapshot of project "lynx", label v2-9-0dev_0k
Diffstat (limited to 'WWW/Library/Implementation')
-rw-r--r--WWW/Library/Implementation/HTTP.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c
index 4de00395..ca7da8a5 100644
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTTP.c,v 1.176 2018/12/26 01:24:09 tom Exp $
+ * $LynxId: HTTP.c,v 1.177 2019/01/25 01:37:35 tom Exp $
  *
  * HyperText Tranfer Protocol	- Client implementation		HTTP.c
  * ==========================
@@ -1637,7 +1637,7 @@ static int HTLoadHTTP(const char *arg,
 	     * If we do have a cookie set, add it to the request buffer.  - FM
 	     */
 	    if (cookie != NULL) {
-		if (*cookie != '$') {
+		if (*cookie != '$' && USE_RFC_2965) {
 		    /*
 		     * It's a historical cookie, so signal to the server that
 		     * we support modern cookies.  - FM