gnutls-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-393-g1471336


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-393-g1471336
Date: Fri, 01 Oct 2010 09:26:59 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=147133679740be943b021d93271cea9d04752ef2

The branch, master has been updated
       via  147133679740be943b021d93271cea9d04752ef2 (commit)
      from  9e29e5be692a074b72e6817879635669d518d30b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 147133679740be943b021d93271cea9d04752ef2
Author: Simon Josefsson <address@hidden>
Date:   Fri Oct 1 11:26:50 2010 +0200

    Fix some syntax-check errors.

-----------------------------------------------------------------------

Summary of changes:
 doc/cha-cert-auth.texi           |    1 -
 doc/cha-internals.texi           |    1 -
 doc/cha-library.texi             |    1 -
 lib/ext_safe_renegotiation.c     |    1 -
 lib/ext_server_name.c            |    1 -
 lib/gcrypt/init.c                |    1 -
 lib/gnutls_record.c              |    1 -
 lib/gnutls_str.c                 |    1 -
 lib/locks.c                      |    1 -
 lib/nettle/egd.c                 |    3 +--
 lib/nettle/init.c                |    1 -
 lib/system.c                     |    1 -
 lib/system.h                     |    1 -
 libextra/ext_inner_application.c |    1 -
 src/certtool-common.h            |    1 -
 src/common.c                     |    2 +-
 src/pkcs11.c                     |    2 +-
 17 files changed, 3 insertions(+), 18 deletions(-)

diff --git a/doc/cha-cert-auth.texi b/doc/cha-cert-auth.texi
index b447593..1c66116 100644
--- a/doc/cha-cert-auth.texi
+++ b/doc/cha-cert-auth.texi
@@ -669,4 +669,3 @@ then use @ref{gnutls_x509_crt_get_signature_algorithm} to 
find out the
 signing algorithm used for each certificate.  If any of the
 intermediary certificates are using @code{GNUTLS_SIGN_RSA_MD2} or
 @code{GNUTLS_SIGN_RSA_MD5}, you could present a warning.
-
diff --git a/doc/cha-internals.texi b/doc/cha-internals.texi
index fda6221..117c023 100644
--- a/doc/cha-internals.texi
+++ b/doc/cha-internals.texi
@@ -333,4 +333,3 @@ must be taken to use the same format.
 @end itemize
 
 If all of them are used then GnuTLS will no longer use libgcrypt.
-
diff --git a/doc/cha-library.texi b/doc/cha-library.texi
index 9213ea6..ffce898 100644
--- a/doc/cha-library.texi
+++ b/doc/cha-library.texi
@@ -185,4 +185,3 @@ should allocate and free memory using the functions shown 
below.
 @item @ref{gnutls_free}
 
 @end itemize
-
diff --git a/lib/ext_safe_renegotiation.c b/lib/ext_safe_renegotiation.c
index 099402c..24d425e 100644
--- a/lib/ext_safe_renegotiation.c
+++ b/lib/ext_safe_renegotiation.c
@@ -458,4 +458,3 @@ extension_priv_data_t epriv;
 
   return priv->connection_using_safe_renegotiation;
 }
-
diff --git a/lib/ext_server_name.c b/lib/ext_server_name.c
index 7b2face..acda371 100644
--- a/lib/ext_server_name.c
+++ b/lib/ext_server_name.c
@@ -462,4 +462,3 @@ error:
   gnutls_free(priv);
   return ret;
 }
-
diff --git a/lib/gcrypt/init.c b/lib/gcrypt/init.c
index 175cbd0..4566bc2 100644
--- a/lib/gcrypt/init.c
+++ b/lib/gcrypt/init.c
@@ -81,4 +81,3 @@ int gnutls_crypto_init(void)
 
    return 0;
 }
-
diff --git a/lib/gnutls_record.c b/lib/gnutls_record.c
index 972c8ad..afc7e32 100644
--- a/lib/gnutls_record.c
+++ b/lib/gnutls_record.c
@@ -1220,4 +1220,3 @@ gnutls_record_recv (gnutls_session_t session, void *data, 
size_t sizeofdata)
   return _gnutls_recv_int (session, GNUTLS_APPLICATION_DATA, -1, data,
                           sizeofdata);
 }
-
diff --git a/lib/gnutls_str.c b/lib/gnutls_str.c
index 4975dde..2893cab 100644
--- a/lib/gnutls_str.c
+++ b/lib/gnutls_str.c
@@ -629,4 +629,3 @@ int _gnutls_buffer_pop_data_prefix (gnutls_buffer_st * buf, 
void * data, size_t
     
     return 0;
 }
-
diff --git a/lib/locks.c b/lib/locks.c
index ea96733..e1ddfc6 100644
--- a/lib/locks.c
+++ b/lib/locks.c
@@ -59,4 +59,3 @@ void gnutls_global_set_mutex(mutex_init_func init, 
mutex_deinit_func deinit,
   gnutls_mutex_lock = lock;
   gnutls_mutex_unlock = unlock;
 }
-
diff --git a/lib/nettle/egd.c b/lib/nettle/egd.c
index 60467c6..09c5ad8 100644
--- a/lib/nettle/egd.c
+++ b/lib/nettle/egd.c
@@ -1,5 +1,5 @@
 /* rndegd.c  - interface to the EGD
- *     Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
+ *     Copyright (C) 1999, 2000, 2002, 2003, 2010 Free Software Foundation, 
Inc.
  *
  * This file is part of Libgcrypt.
  *
@@ -253,4 +253,3 @@ int _rndegd_read (int * fd, void* _output, size_t _length)
 
   return _length; /* success */
 }
-
diff --git a/lib/nettle/init.c b/lib/nettle/init.c
index 799d276..868ddc6 100644
--- a/lib/nettle/init.c
+++ b/lib/nettle/init.c
@@ -35,4 +35,3 @@ int gnutls_crypto_init(void)
 {
    return 0;
 }
-
diff --git a/lib/system.c b/lib/system.c
index 8e33090..ec05590 100644
--- a/lib/system.c
+++ b/lib/system.c
@@ -238,4 +238,3 @@ mutex_init_func gnutls_mutex_init = 
gnutls_system_mutex_init;
 mutex_deinit_func gnutls_mutex_deinit = gnutls_system_mutex_deinit;
 mutex_lock_func gnutls_mutex_lock = gnutls_system_mutex_lock;
 mutex_unlock_func gnutls_mutex_unlock = gnutls_system_mutex_unlock;
-
diff --git a/lib/system.h b/lib/system.h
index e42e485..a8257d4 100644
--- a/lib/system.h
+++ b/lib/system.h
@@ -31,4 +31,3 @@ ssize_t system_read_peek(gnutls_transport_ptr ptr, void* 
data, size_t data_size)
 int _gnutls_atfork(void (*prepare)(void), void (*parent)(void), void 
(*child)(void));
 
 #endif /* SYSTEM_H */
-
diff --git a/libextra/ext_inner_application.c b/libextra/ext_inner_application.c
index bad812e..f0df0f3 100644
--- a/libextra/ext_inner_application.c
+++ b/libextra/ext_inner_application.c
@@ -253,4 +253,3 @@ error:
   gnutls_free(priv);
   return ret;
 }
-
diff --git a/src/certtool-common.h b/src/certtool-common.h
index bf9da58..d8599c8 100644
--- a/src/certtool-common.h
+++ b/src/certtool-common.h
@@ -69,4 +69,3 @@ int get_bits(gnutls_pk_algorithm_t);
 
 /* prime.c */
 int generate_prime (int how);
-
diff --git a/src/common.c b/src/common.c
index 7590482..8081467 100644
--- a/src/common.c
+++ b/src/common.c
@@ -920,7 +920,7 @@ static char cached_pin[32] = "";
        
        /* cache */
        strcpy(cached_pin, pin);
-       if (cached_url) free(cached_url);
+       free(cached_url);
        cached_url = strdup(token_url);
        
        return 0;
diff --git a/src/pkcs11.c b/src/pkcs11.c
index c0d6239..2912b97 100644
--- a/src/pkcs11.c
+++ b/src/pkcs11.c
@@ -66,7 +66,7 @@ static char cached_pin[32] = "";
        
        /* cache */
        strcpy(cached_pin, pin);
-       if (cached_url) free(cached_url);
+       free(cached_url);
        cached_url = strdup(token_url);
        
        return 0;


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]