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_3_0_18-100-g9833f4a


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_18-100-g9833f4a
Date: Fri, 01 Jun 2012 22:52:21 +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=9833f4a19133b495f96d0da3adf57f1c7212dece

The branch, master has been updated
       via  9833f4a19133b495f96d0da3adf57f1c7212dece (commit)
       via  d58bf014cc5657db370a583527239a15a6e7ae30 (commit)
       via  f5f8a23e0ffc4e35aaac90965a2a64485287cd32 (commit)
       via  898a53c762a4ef8f2c9d93d191b2a21f811c0634 (commit)
       via  27691a9c8d9c03d9dde71787ceb8d29b68fa3da7 (commit)
      from  aec3ba6b7904d67d0e1a217bcbeaf6a7f04be0f7 (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 9833f4a19133b495f96d0da3adf57f1c7212dece
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Jun 2 00:51:28 2012 +0200

    doc updates

commit d58bf014cc5657db370a583527239a15a6e7ae30
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu May 31 22:26:07 2012 +0200

    corrected text.

commit f5f8a23e0ffc4e35aaac90965a2a64485287cd32
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu May 31 22:22:26 2012 +0200

    corrected typo

commit 898a53c762a4ef8f2c9d93d191b2a21f811c0634
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu May 31 09:40:37 2012 +0200

    typo fix

commit 27691a9c8d9c03d9dde71787ceb8d29b68fa3da7
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu May 31 09:38:03 2012 +0200

    Do not document old functions.

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

Summary of changes:
 lib/gnutls_cert.c               |    8 ++++----
 lib/gnutls_ui.c                 |    2 +-
 lib/includes/gnutls/gnutls.h.in |    3 +--
 lib/x509/verify.c               |    2 +-
 lib/x509/x509.c                 |    4 ++--
 5 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/lib/gnutls_cert.c b/lib/gnutls_cert.c
index ac25051..01636cc 100644
--- a/lib/gnutls_cert.c
+++ b/lib/gnutls_cert.c
@@ -776,7 +776,7 @@ gnutls_certificate_activation_time_peers (gnutls_session_t 
session)
     }
 }
 
-/**
+/*-
  * gnutls_sign_callback_set:
  * @session: is a gnutls session
  * @sign_func: function pointer to application's sign callback.
@@ -796,7 +796,7 @@ gnutls_certificate_activation_time_peers (gnutls_session_t 
session)
  * callback function.  See also gnutls_sign_callback_get().
  *
  * Deprecated: Use the PKCS 11 or #gnutls_privkey_t interfacess like 
gnutls_privkey_import_ext() instead.
- */
+ -*/
 void
 gnutls_sign_callback_set (gnutls_session_t session,
                           gnutls_sign_func sign_func, void *userdata)
@@ -805,7 +805,7 @@ gnutls_sign_callback_set (gnutls_session_t session,
   session->internals.sign_func_userdata = userdata;
 }
 
-/**
+/*-
  * gnutls_sign_callback_get:
  * @session: is a gnutls session
  * @userdata: if non-%NULL, will be set to abstract callback pointer.
@@ -816,7 +816,7 @@ gnutls_sign_callback_set (gnutls_session_t session,
  *   if not set, %NULL.
  *
  * Deprecated: Use the PKCS 11 interfaces instead.
- */
+ -*/
 gnutls_sign_func
 gnutls_sign_callback_get (gnutls_session_t session, void **userdata)
 {
diff --git a/lib/gnutls_ui.c b/lib/gnutls_ui.c
index 4a44dc6..ac822a5 100644
--- a/lib/gnutls_ui.c
+++ b/lib/gnutls_ui.c
@@ -493,7 +493,7 @@ gnutls_dh_get_peers_public_bits (gnutls_session_t session)
  * list is being returned. Only the first certificate.
  *
  * Returns: a pointer to a #gnutls_datum_t containing our
- *   certificates, or %NULL in case of an error or if no certificate
+ *   certificate, or %NULL in case of an error or if no certificate
  *   was used.
  **/
 const gnutls_datum_t *
diff --git a/lib/includes/gnutls/gnutls.h.in b/lib/includes/gnutls/gnutls.h.in
index 50cc22d..c61b408 100644
--- a/lib/includes/gnutls/gnutls.h.in
+++ b/lib/includes/gnutls/gnutls.h.in
@@ -429,8 +429,7 @@ extern "C"
  * @GNUTLS_CERT_REVOKED: Certificate is revoked by its authority.  In X.509 
this will be
  *   set only if CRLs are checked.
  * @GNUTLS_CERT_SIGNER_NOT_FOUND: The certificate's issuer is not known. 
- *   This is the case if the issue is not included in the trusted certificate 
list.
- *   not found.
+ *   This is the case if the issuer is not included in the trusted certificate 
list.
  * @GNUTLS_CERT_SIGNER_NOT_CA: The certificate’s signer was not a CA. This
  *   may happen if this was a version 1 certificate, which is common with 
  *   some CAs, or a version 3 certificate without the basic constrains 
extension.
diff --git a/lib/x509/verify.c b/lib/x509/verify.c
index 8c42e13..1cf5dc5 100644
--- a/lib/x509/verify.c
+++ b/lib/x509/verify.c
@@ -245,7 +245,7 @@ is_issuer (gnutls_x509_crt_t cert, gnutls_x509_crt_t 
issuer_cert)
   if (ret != 0)
     {
       /* check if the authority key identifier matches the subject key 
identifier
-       * of the isser */
+       * of the issuer */
        id1_size = sizeof(id1);
        
        ret = gnutls_x509_crt_get_authority_key_id(cert, id1, &id1_size, NULL);
diff --git a/lib/x509/x509.c b/lib/x509/x509.c
index 8ebec1f..acb3cec 100644
--- a/lib/x509/x509.c
+++ b/lib/x509/x509.c
@@ -2059,7 +2059,7 @@ cleanup:
  * @start: will hold the starting point of the DN
  *
  * This function will return a pointer to the DER encoded DN structure
- * and the length.
+ * and the length. This points to allocated data that must be free'd using 
gnutls_free().
  *
  * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise a
  *   negative error value.or a negative error code on error.
@@ -2078,7 +2078,7 @@ gnutls_x509_crt_get_raw_issuer_dn (gnutls_x509_crt_t cert,
  * @start: will hold the starting point of the DN
  *
  * This function will return a pointer to the DER encoded DN structure and
- * the length.
+ * the length. This points to allocated data that must be free'd using 
gnutls_free().
  *
  * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise a
  *   negative error value. or a negative error code on error.


hooks/post-receive
-- 
GNU gnutls



reply via email to

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