gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_10_2-5-ged4314


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_10_2-5-ged43144
Date: Thu, 30 Sep 2010 15:03:50 +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=ed43144eb039f5a1bf9d5609b73e390256fe0c15

The branch, gnutls_2_10_x has been updated
       via  ed43144eb039f5a1bf9d5609b73e390256fe0c15 (commit)
      from  c199a1ec5bfa98c5c9f2779b87565981966da0fa (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 ed43144eb039f5a1bf9d5609b73e390256fe0c15
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 183fcb3..e6a4a5a 100644
--- a/lib/crypto-api.c
+++ b/lib/crypto-api.c
@@ -182,7 +182,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);
 }
 
 /**
@@ -303,7 +303,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]