diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2021-11-05 00:11:32 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2021-11-05 00:11:32 +0000 |
commit | d5a40d10fe0116599ce8be8b4b582f2f1f30c73b (patch) | |
tree | 9a612ea72dc979e52431fc74a5cec1989d7605a3 /WWW | |
parent | b440c9db75e4eec893efa657d094514d35225dfc (diff) | |
download | lynx-snapshots-d5a40d10fe0116599ce8be8b4b582f2f1f30c73b.tar.gz |
snapshot of project "lynx", label v2-9-0dev_10a
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index 338a6ebd..e405e46f 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.180 2021/08/07 14:33:59 tom Exp $ + * $LynxId: HTTP.c,v 1.181 2021/11/04 22:15:26 Sylvain.Bertrand Exp $ * * HyperText Transfer Protocol - Client implementation HTTP.c * =========================== @@ -1741,13 +1741,13 @@ static int HTLoadHTTP(const char *arg, anAnchor->post_content_type ? anAnchor->post_content_type : "lose")); - HTBprintf(&command, "Content-type: %s%c%c", + HTBprintf(&command, "Content-Type: %s%c%c", anAnchor->post_content_type ? anAnchor->post_content_type : "lose", CR, LF); - HTBprintf(&command, "Content-length: %d%c%c", + HTBprintf(&command, "Content-Length: %d%c%c", !isBEmpty(anAnchor->post_data) ? BStrLen(anAnchor->post_data) : 0, |