summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2003-11-22 16:23:56 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2003-11-22 16:23:56 +0000
commit026e96eccba04c2097bebfb047a7fb401b8d6b81 (patch)
tree722b163d723cc7ef9e39e1e8a2d24f331654362f
parentffd194e46b037d63126f9838a4cebfcf995f57a3 (diff)
downloadgnutls-026e96eccba04c2097bebfb047a7fb401b8d6b81.tar.gz
*** empty log message ***
-rw-r--r--doc/README.autoconf4
-rw-r--r--includes/gnutls/x509.h6
-rw-r--r--lib/x509/pkcs5.c2
-rw-r--r--src/common.c2
-rw-r--r--src/serv.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/doc/README.autoconf b/doc/README.autoconf
index 3ac5ce4d14..44be0917cd 100644
--- a/doc/README.autoconf
+++ b/doc/README.autoconf
@@ -5,7 +5,7 @@ aclocal.m4:
include(libgnutls.m4)
configure.in:
- AM_PATH_LIBGNUTLS( 0.9.90,, AC_MSG_ERROR([[
+ AM_PATH_LIBGNUTLS( 0.9.99,, AC_MSG_ERROR([[
***
*** libgnutls was not found. You may want to get it from
*** ftp://ftp.gnutls.org/pub/gnutls/
@@ -18,7 +18,7 @@ aclocal.m4:
include(libgnutls-extra.m4)
configure.in:
- AM_PATH_LIBGNUTLS_EXTRA( 0.9.90,, AC_MSG_ERROR([[
+ AM_PATH_LIBGNUTLS_EXTRA( 0.9.99,, AC_MSG_ERROR([[
***
*** libgnutls-extra was not found. You may want to get it from
*** ftp://ftp.gnutls.org/pub/gnutls/
diff --git a/includes/gnutls/x509.h b/includes/gnutls/x509.h
index 35dd87dce3..1c8bd3df23 100644
--- a/includes/gnutls/x509.h
+++ b/includes/gnutls/x509.h
@@ -20,7 +20,7 @@
*/
/* This file contains the types and prototypes for the X.509
- * certificate and CRL parsing functions.
+ * certificate and CRL handling functions.
*/
#ifndef GNUTLS_X509_H
@@ -237,8 +237,8 @@ int gnutls_x509_crl_verify( gnutls_x509_crl crl,
unsigned int flags, unsigned int *verify);
int gnutls_x509_crt_check_revocation(gnutls_x509_crt cert,
- gnutls_x509_crl * crl_list,
- int crl_list_length);
+ gnutls_x509_crl * crl_list,
+ int crl_list_length);
int gnutls_x509_crt_get_fingerprint(gnutls_x509_crt cert,
gnutls_digest_algorithm algo, void *buf,
diff --git a/lib/x509/pkcs5.c b/lib/x509/pkcs5.c
index b3d9c43b9d..15ce59c05c 100644
--- a/lib/x509/pkcs5.c
+++ b/lib/x509/pkcs5.c
@@ -1,5 +1,5 @@
/* pkcs5.c Implementation of Password-Based Cryptography as per PKCS#5
- * Copyright (C) 2002 Simon Josefsson
+ * Copyright (C) 2002,2003 Simon Josefsson
*
* This file is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/src/common.c b/src/common.c
index ca2f16c9c4..d25588f01b 100644
--- a/src/common.c
+++ b/src/common.c
@@ -399,7 +399,7 @@ int print_info(gnutls_session session, const char* hostname)
{
char dns[256];
size_t dns_size = sizeof(dns);
- gnutls_server_name_type type;
+ unsigned int type;
/* This fails in client side */
if (gnutls_server_name_get
diff --git a/src/serv.c b/src/serv.c
index b855cbad44..0125e19c26 100644
--- a/src/serv.c
+++ b/src/serv.c
@@ -351,7 +351,7 @@ char *peer_print_info(gnutls_session session, int *ret_length,
{
char dns[256];
size_t dns_size = sizeof(dns);
- gnutls_server_name_type type;
+ unsigned int type;
if (gnutls_server_name_get(session, dns, &dns_size, &type, 0) == 0) {
sprintf(tmp2, "\n<p>Server Name: %s</p>\n", dns);