diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2009-05-10 23:07:26 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2009-05-10 23:07:26 -0400 |
commit | 01859149e85a589e236b320b01197e79c422a729 (patch) | |
tree | 75853dcb9a394b1295316f55c89fc9d4e883dcc1 /WWW | |
parent | f8d475aab71bdaf6387d6cc91c1518559e2fa37b (diff) | |
download | lynx-snapshots-01859149e85a589e236b320b01197e79c422a729.tar.gz |
snapshot of project "lynx", label v2-8-7pre_2a
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/HTFormat.c | 4 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTNews.c | 6 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c index 666db610..d66f5ae6 100644 --- a/WWW/Library/Implementation/HTFormat.c +++ b/WWW/Library/Implementation/HTFormat.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFormat.c,v 1.67 2009/04/08 20:08:01 tom Exp $ + * $LynxId: HTFormat.c,v 1.68 2009/05/10 23:07:26 tom Exp $ * * Manage different file formats HTFormat.c * ============================= @@ -288,7 +288,7 @@ int HTGetCharacter(void) } #ifdef USE_SSL -char HTGetSSLCharacter(void *handle) +int HTGetSSLCharacter(void *handle) { char ch; diff --git a/WWW/Library/Implementation/HTNews.c b/WWW/Library/Implementation/HTNews.c index 1a3fdbc0..07d723d8 100644 --- a/WWW/Library/Implementation/HTNews.c +++ b/WWW/Library/Implementation/HTNews.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTNews.c,v 1.58 2009/01/01 17:00:01 tom Exp $ + * $LynxId: HTNews.c,v 1.59 2009/05/10 22:53:23 tom Exp $ * * NEWS ACCESS HTNews.c * =========== @@ -51,7 +51,7 @@ static int channel_s = 1; (Handle ? SSL_write(Handle, buff, size) : NETWRITE(sock, buff, size)) #define NEWS_NETCLOSE(sock) \ { (void)NETCLOSE(sock); if (Handle) { SSL_free(Handle); Handle = NULL; } } -static char HTNewsGetCharacter(void); +static int HTNewsGetCharacter(void); #define NEXT_CHAR HTNewsGetCharacter() #else @@ -3044,7 +3044,7 @@ void HTClearNNTPAuthInfo(void) } #ifdef USE_SSL -static char HTNewsGetCharacter(void) +static int HTNewsGetCharacter(void) { if (!Handle) return HTGetCharacter(); diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index e16fc10d..ecd20607 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.93 2009/01/01 21:49:29 tom Exp $ + * $LynxId: HTUtils.h,v 1.94 2009/05/10 23:06:31 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -750,7 +750,7 @@ extern "C" { #ifdef USE_SSL extern SSL *HTGetSSLHandle(void); extern void HTSSLInitPRNG(void); - extern char HTGetSSLCharacter(void *handle); + extern int HTGetSSLCharacter(void *handle); #endif /* USE_SSL */ #ifdef __cplusplus |