summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-10-09 21:40:44 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-10-09 21:40:44 +0000
commite953612fab306a0c04bbb105e007b3098c98923e (patch)
tree189245b45dae61fe46fc52e5579e216267e4d7f8
parentc19016fdc7c9784bf182dbbf0d4beed4a6be456f (diff)
downloadgnutls-e953612fab306a0c04bbb105e007b3098c98923e.tar.gz
cleanups
-rw-r--r--NEWS12
-rw-r--r--configure.in2
-rw-r--r--lib/gnutls_extensions.c2
-rw-r--r--lib/x509_xml.c4
4 files changed, 10 insertions, 10 deletions
diff --git a/NEWS b/NEWS
index 4ca72fa2de..7a05900c45 100644
--- a/NEWS
+++ b/NEWS
@@ -1,15 +1,15 @@
Version 0.5.9
-- Added gnutls_x509_extract_key_pk_algorithm() function which extracts
- the private key type.
- Corrected some code which worked fine in gcc 3.2, but not with any
other compiler.
-- Updated 'gnutls-cli' with the starttls parameter, to allow testing
+- Updated 'gnutls-cli' with the '--starttls' option, to allow testing
starttls implementations.
-- Added gnutls_x509_extract_certificate_dn_string() which returns the peer's
- Distinguished name in a single string.
+- Added gnutls_x509_extract_key_pk_algorithm() function which extracts
+ the private key type, of a DER encoded key.
+- Added gnutls_x509_extract_certificate_dn_string() which returns the
+ certificate's distinguished name in a single string.
- Added gnutls_set_default_priority() and gnutls_set_default_export_priority()
functions, to avoid calling all the *_priority() functions if the defaults
- are ok.
+ are acceptable.
Version 0.5.8 (25/09/2002)
- Updated documentation.
diff --git a/configure.in b/configure.in
index 3c343732f1..3843c71176 100644
--- a/configure.in
+++ b/configure.in
@@ -23,7 +23,7 @@ AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
dnl This is the library version
-GNUTLS_MOST_RECENT_INTERFACE=5
+GNUTLS_MOST_RECENT_INTERFACE=6
GNUTLS_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER=$GNUTLS_MICRO_VERSION
GNUTLS_OLDEST_INTERFACE=5
diff --git a/lib/gnutls_extensions.c b/lib/gnutls_extensions.c
index b2f775f371..534e81a0c1 100644
--- a/lib/gnutls_extensions.c
+++ b/lib/gnutls_extensions.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2001 Nikos Mavroyanopoulos
+ * Copyright (C) 2001 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
diff --git a/lib/x509_xml.c b/lib/x509_xml.c
index 2fef8c728e..572e3e2580 100644
--- a/lib/x509_xml.c
+++ b/lib/x509_xml.c
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2002 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
- * The LIBTASN1 library is free software; you can redistribute it and/or
+ * The GNUTLS library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.