From: Nikos Mavrogiannopoulos Date: Thu, 22 Apr 2004 17:09:35 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: gnutls_1_1_11~117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4ca6f488ee41487bf0d3a1484ab025c9860fa90;p=thirdparty%2Fgnutls.git *** empty log message *** --- diff --git a/NEWS b/NEWS index bca0fcb615..5ee51c513a 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ Version 1.1.10 - Corrected bug in TLS renegotiation. - Corrected bug in OpenPGP key loading using a callback. - gnutls-srpcrypt was renamed to srptool +- Allow handshake requests by the client. Version 1.1.9 (14/04/2004) - Added support for authority key identifier and the extended key usage diff --git a/configure.in b/configure.in index d2e1793596..42920f7dea 100644 --- a/configure.in +++ b/configure.in @@ -12,7 +12,7 @@ AC_DEFINE_UNQUOTED(T_OS, "$target_os", [OS name]) dnl Gnutls Version GNUTLS_MAJOR_VERSION=1 GNUTLS_MINOR_VERSION=1 -GNUTLS_MICRO_VERSION=8 +GNUTLS_MICRO_VERSION=10 GNUTLS_VERSION=$GNUTLS_MAJOR_VERSION.$GNUTLS_MINOR_VERSION.$GNUTLS_MICRO_VERSION AC_DEFINE_UNQUOTED(GNUTLS_VERSION, "$GNUTLS_VERSION", [version of gnutls]) diff --git a/doc/TODO b/doc/TODO index ff7cc867bf..d9988a9734 100644 --- a/doc/TODO +++ b/doc/TODO @@ -21,7 +21,6 @@ Current list: - Convert documentation to texinfo format - Allow sending V2 Hello messages. It seems that some (old) broken implementations require that. -- Allow unexpected Client Hello messages - Add Kerberos support (+) Means high priority diff --git a/lib/gnutls_global.c b/lib/gnutls_global.c index 40c154bf3e..ccb37bafc1 100644 --- a/lib/gnutls_global.c +++ b/lib/gnutls_global.c @@ -162,7 +162,6 @@ int gnutls_global_init( void) { int result = 0; int res; - char c; if (_gnutls_init) goto out; _gnutls_init++; diff --git a/lib/gnutls_record.c b/lib/gnutls_record.c index b6d0051472..1691e7e236 100644 --- a/lib/gnutls_record.c +++ b/lib/gnutls_record.c @@ -594,8 +594,8 @@ static int _gnutls_record_check_type( gnutls_session session, ContentType recv_t break; case GNUTLS_HANDSHAKE: - /* This is legal if HELLO_REQUEST is received - and we are a client, - * or we are a server. A client may initiate a renegotiation at any time. + /* This is legal if HELLO_REQUEST is received - and we are a client. + * If we are a server, a client may initiate a renegotiation at any time. */ if ( session->security_parameters.entity==GNUTLS_SERVER) { gnutls_assert();