diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2010-09-22 10:53:56 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2010-09-22 10:53:56 -0400 |
commit | bf665822fc371159c9fc6630ab805638c58ab299 (patch) | |
tree | a85a0ee9a271bf9cde1108daca90b657f0aed5f9 /WWW/Library/Implementation/HTNews.c | |
parent | 2bfdbc116276afc90c803427e7af7b44a0c11c66 (diff) | |
download | lynx-snapshots-bf665822fc371159c9fc6630ab805638c58ab299.tar.gz |
snapshot of project "lynx", label v2-8-8dev_5b
Diffstat (limited to 'WWW/Library/Implementation/HTNews.c')
-rw-r--r-- | WWW/Library/Implementation/HTNews.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTNews.c b/WWW/Library/Implementation/HTNews.c index bc5825a4..c12196c0 100644 --- a/WWW/Library/Implementation/HTNews.c +++ b/WWW/Library/Implementation/HTNews.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTNews.c,v 1.63 2010/06/17 00:10:46 tom Exp $ + * $LynxId: HTNews.c,v 1.64 2010/09/22 00:51:25 tom Exp $ * * NEWS ACCESS HTNews.c * =========== @@ -312,7 +312,7 @@ static int response(char *command) status = NEWS_NETWRITE(s, ascii, length); } #else - status = NEWS_NETWRITE(s, (char *) command, length); + status = (int) NEWS_NETWRITE(s, (char *) command, length); #endif /* NOT_ASCII */ if (status < 0) { CTRACE((tfp, "HTNews: Unable to send command. Disconnecting.\n")); @@ -2697,7 +2697,7 @@ static int HTLoadNews(const char *arg, #endif /* USE_SSL */ HTInitInput(s); /* set up buffering */ if (proxycmd[0]) { - status = NEWS_NETWRITE(s, proxycmd, strlen(proxycmd)); + status = (int) NEWS_NETWRITE(s, proxycmd, (int) strlen(proxycmd)); CTRACE((tfp, "HTNews: Proxy command returned status '%d'.\n", status)); |