summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-05 18:41:59 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-05 18:41:59 +0000
commit1f061203b4402b8192a630988503afe6fc588026 (patch)
treeb9ad3ea3a19b316dfa32364f9b27301b5b1724ac
parenta21349b7bd4aa45ed9ece6d8ac77735744f46e2d (diff)
downloadgnutls_0_3_2.tar.gz
last minute changes for 0.3.2 releasegnutls_0_3_2
-rw-r--r--NEWS5
-rw-r--r--doc/tex/cover.tex.in3
-rw-r--r--doc/tex/errors.tex2
-rw-r--r--lib/Makefile.am2
-rw-r--r--lib/gnutls_errors.c4
5 files changed, 10 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 57294b1766..11526d24dd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,17 +1,18 @@
-Version 0.3.2
+Version 0.3.2 (5/01/2001)
- Corrected bug which did not allow a client to accept multiple CA names
- Added gnutls_fingerprint()
- Added gnutls_x509pki_extract_certificate_serial()
- Added gnutls_b64_encode_fmt() and gnutls_b64_decode_fmt()
- Corrected behaviour in version advertizing
- Updated documentation
+- Prefixed all types in gnutls.h with 'GNUTLS_' to avoid namespace collisions
Version 0.3.1 (21/12/2001)
- Corrections in the configuration files
- Fixes a bug in anonymous authentication
Version 0.3.0 (17/12/2001)
-- Corrected bug in new integer formatting (now we use the old again)
+- Corrected bug in new integer formatting (now we use the old format again)
- Several corrections and usual cleanups
Version 0.2.91 (10/12/2001)
diff --git a/doc/tex/cover.tex.in b/doc/tex/cover.tex.in
index 1256b9e7b2..680dc12c23 100644
--- a/doc/tex/cover.tex.in
+++ b/doc/tex/cover.tex.in
@@ -22,6 +22,9 @@
\begin{center}
\par
+Copyright \copyright\ 2001,2002 Nikos Mavroyanopoulos and Fabio Fiorina\\
+\setlength{\parskip}{4mm}
+\par
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.1 or any later version published by the Free Software
diff --git a/doc/tex/errors.tex b/doc/tex/errors.tex
index 05cc699fb3..449c2c6810 100644
--- a/doc/tex/errors.tex
+++ b/doc/tex/errors.tex
@@ -15,7 +15,7 @@ the error code GNUTLS\_E\_REHANDSHAKE returned by
\hyperref{gnutls\_read()}{gnutls\_read() (see Section }{)}{gnutls_read}.
This error code requires a full handshake to be performed again, or an alert to be sent.
You can test if an error code is a fatal one by using the
-\hyperref{gnutls\_is\_fatal\_error()}{gnutls\_is\_fatal\_error() (see Section }{)}{gnutls_is_fatal_error}.
+\hyperref{gnutls\_error\_is\_fatal()}{gnutls\_error\_is\_fatal() (see Section }{)}{gnutls_error_is_fatal}.
\par
If any non fatal errors, that require reaction, are to be returned by a
function, these error codes will be documented
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 62dca38393..5426a67218 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -18,7 +18,7 @@ EXTRA_DIST = debug.h gnutls_compress.h defines.h pkcs1.asn pkix.asn \
gnutls_privkey.h gnutls_constate.h gnutls_global.h x509_verify.h \
gnutls_sig.h gnutls_mem.h x509_extensions.h gnutls_ui.h \
gnutls-api.tex io_debug.h ext_max_record.h gnutls_session_pack.h \
- gnutls_alert.h
+ gnutls_alert.h asn1-api.tex
lib_LTLIBRARIES = libgnutls.la
diff --git a/lib/gnutls_errors.c b/lib/gnutls_errors.c
index ce2e4b9d5b..5f3a424de6 100644
--- a/lib/gnutls_errors.c
+++ b/lib/gnutls_errors.c
@@ -129,8 +129,8 @@ int gnutls_error_is_fatal(int error)
* gnutls_perror - prints a string to stderr with a description of an error
* @error: is an error returned by a gnutls function. Error is always a negative value.
*
- * This function is like perror(). However it accepts an error returned by a gnutls
- * function.
+ * This function is like perror(). The only difference is that it accepts an
+ * error returned by a gnutls function.
**/
void gnutls_perror(int error)
{