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-389-gf28d1ea


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-389-gf28d1ea
Date: Thu, 30 Sep 2010 15:04:12 +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=f28d1eaea2226c05bf86a2e60a0aee0395ddc305

The branch, master has been updated
       via  f28d1eaea2226c05bf86a2e60a0aee0395ddc305 (commit)
      from  2c121764ce8684ac468b82519bd6a2fc02acc217 (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 f28d1eaea2226c05bf86a2e60a0aee0395ddc305
Author: Simon Josefsson <address@hidden>
Date:   Thu Sep 30 17:02:20 2010 +0200

    Don't return from void functions.
    
    Reported by Dagobert Michelsen <address@hidden>
    in <http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/4566>.

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

Summary of changes:
 lib/crypto-api.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/crypto-api.c b/lib/crypto-api.c
index 1e61e41..1b6b5d5 100644
--- a/lib/crypto-api.c
+++ b/lib/crypto-api.c
@@ -228,7 +228,7 @@ gnutls_hmac (gnutls_hmac_hd_t handle, const void *text, 
size_t textlen)
 void
 gnutls_hmac_output (gnutls_hmac_hd_t handle, void *digest)
 {
-  return _gnutls_hmac_output ((digest_hd_st *) handle, digest);
+  _gnutls_hmac_output ((digest_hd_st *) handle, digest);
 }
 
 /**
@@ -349,7 +349,7 @@ gnutls_hash (gnutls_hash_hd_t handle, const void *text, 
size_t textlen)
 void
 gnutls_hash_output (gnutls_hash_hd_t handle, void *digest)
 {
-  return _gnutls_hash_output ((digest_hd_st *) handle, digest);
+  _gnutls_hash_output ((digest_hd_st *) handle, digest);
 }
 
 /**


hooks/post-receive
-- 
GNU gnutls



reply via email to

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