summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--configure.in2
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/scripts/Makefile.am3
-rw-r--r--lib/gnutls_x509.c2
-rw-r--r--libextra/auth_srp_passwd.c1
6 files changed, 7 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index bba1851d9c..a36394f723 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,10 @@
-Version 0.8.1
+Version 0.8.1 (22/01/2003)
- Improved the SRP support, to prevent attackers guessing the
available usernames by brute force.
+- Improved the SRP detection in gnutls-cli-debug
+- Some fixes which now allow compilation.
-Version 0.8.0 (20/01/2002)
+Version 0.8.0 (20/01/2003)
- Added gnutls_x509_extract_dn_string() which returns a
distinguished name in a single string.
- Added gnutls_openpgp_extract_key_name_string() which returns
diff --git a/configure.in b/configure.in
index 5bf66e7734..999a18d0e5 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=0
GNUTLS_MINOR_VERSION=8
-GNUTLS_MICRO_VERSION=0
+GNUTLS_MICRO_VERSION=1
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/Makefile.am b/doc/Makefile.am
index aa2681e236..5864a9e314 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,3 +1,3 @@
EXTRA_DIST = TODO README.CVS README.autoconf
-SUBDIRS = tex examples
+SUBDIRS = tex examples scripts
diff --git a/doc/scripts/Makefile.am b/doc/scripts/Makefile.am
index cc887e7caa..e69de29bb2 100644
--- a/doc/scripts/Makefile.am
+++ b/doc/scripts/Makefile.am
@@ -1,3 +0,0 @@
-EXTRA_DIST = gdoc sort1.pl
-
-
diff --git a/lib/gnutls_x509.c b/lib/gnutls_x509.c
index 87a831164a..c98e6b5cef 100644
--- a/lib/gnutls_x509.c
+++ b/lib/gnutls_x509.c
@@ -3029,7 +3029,7 @@ int gnutls_x509_extract_certificate_dn_string(char *buf, unsigned int sizeof_buf
int ret, i;
char str_buffer[256];
- if (buf == NULL || sizeof_buf == 0 || cert == NULL || cert.size == 0) {
+ if (buf == NULL || sizeof_buf == 0 || cert == NULL || cert->size == 0) {
return GNUTLS_E_INVALID_REQUEST;
}
diff --git a/libextra/auth_srp_passwd.c b/libextra/auth_srp_passwd.c
index 22e78d452a..46ccfc1ef2 100644
--- a/libextra/auth_srp_passwd.c
+++ b/libextra/auth_srp_passwd.c
@@ -332,7 +332,6 @@ int _gnutls_srp_pwd_read_entry( gnutls_session state, char* username,
/* user was not found. Fake him. Actually read the g,n values from
* the last index found and randomize the entry.
*/
-fprintf(stderr, "username: %s\nindex: %d\n", username, last_index);
if (pwd_read_conf( cred->password_conf_file[pwd_index], entry, last_index)==0) {
ret = _randomize_pwd_entry( entry);
if (ret < 0) {