]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
*** empty log message ***
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 22 Nov 2003 16:23:56 +0000 (16:23 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 22 Nov 2003 16:23:56 +0000 (16:23 +0000)
doc/README.autoconf
includes/gnutls/x509.h
lib/x509/pkcs5.c
src/common.c
src/serv.c

index 3ac5ce4d1485c15819d6ea2aa6bdedb61ad729d7..44be0917cd2abe36bd479418905759eace7eb71d 100644 (file)
@@ -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/
index 35dd87dce364c4e0288449f8caaffa9310f871d9..1c8bd3df230a4eb34413113f19419fdd9620b511 100644 (file)
@@ -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,
index b3d9c43b9d3399f9ae282627b3de865361ca3412..15ce59c05c04d96ffc7c8c8a65370b474cafe0e0 100644 (file)
@@ -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
index ca2f16c9c42bd8b5ab43d67a0250dd52ee6d804b..d25588f01bcc84681fbd566129913c77ef8b40a8 100644 (file)
@@ -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
index b855cbad440fce0cfcd4428408d1f39865b59085..0125e19c2655b52e4d939da0ba949a5c2549564a 100644 (file)
@@ -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);