diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2015-12-16 01:54:03 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2015-12-16 01:54:03 -0500 |
commit | 70936d8b534d326e6b7bdde5d28fa839a6a33986 (patch) | |
tree | 3e4485f0d809e45e383dfb4d2db4621115be7b20 /WWW/Library/Implementation/HTTP.c | |
parent | 769b6cceb3e3a602353f47b91c1214dd47455966 (diff) | |
download | lynx-snapshots-70936d8b534d326e6b7bdde5d28fa839a6a33986.tar.gz |
snapshot of project "lynx", label v2-8-9dev_6o
Diffstat (limited to 'WWW/Library/Implementation/HTTP.c')
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index 57263f44..30edc891 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.147 2015/11/17 01:29:09 tom Exp $ + * $LynxId: HTTP.c,v 1.148 2015/12/16 01:54:03 tom Exp $ * * HyperText Tranfer Protocol - Client implementation HTTP.c * ========================== @@ -877,9 +877,10 @@ static int HTLoadHTTP(const char *arg, gettext("GnuTLS error when trying to verify certificate.")); } else { type = gnutls_certificate_type_get(handle->gnutls_state); - ret = gnutls_certificate_verification_status_print(tls_status, - type, &out, 0); - SSL_single_prompt(&msg, out.data); + (void) gnutls_certificate_verification_status_print(tls_status, + type, + &out, 0); + SSL_single_prompt(&msg, (const char *) out.data); gnutls_free(out.data); } #else |