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_9-31-g74d964c


From: Daniel Kahn Gillmor
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_9-31-g74d964c
Date: Tue, 05 Jan 2010 04:57:10 +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=74d964c9f72bfa238ad485f20e46ece4336556eb

The branch, master has been updated
       via  74d964c9f72bfa238ad485f20e46ece4336556eb (commit)
      from  a583d7e2f56b377bf53b0e9b91f981271831dfec (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 74d964c9f72bfa238ad485f20e46ece4336556eb
Author: Andreas Metzler <address@hidden>
Date:   Mon Jan 4 23:56:08 2010 -0500

    Typo fixes: successful, precedence, preferred

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

Summary of changes:
 ChangeLog             |    2 +-
 doc/certtool.cfg      |    2 +-
 doc/gnutls.texi       |    2 +-
 lib/gnutls_auth.c     |    2 +-
 lib/gnutls_priority.c |    2 +-
 lib/gnutls_session.c  |    4 ++--
 lib/openpgp/pgp.c     |    2 +-
 lib/openpgp/privkey.c |    2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 646a40b..3c3195d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9799,7 +9799,7 @@
        * configure.in: Bump version so we are higher than gnutls 2.2.x but
        remain compatible.  This will avoid shared library name conflicts
        with 2.2.x, and also that any 2.3.x libraries will always be
-       prefered over 2.2.x.
+       preferred over 2.2.x.
 
 2008-01-19  Simon Josefsson <address@hidden>
 
diff --git a/doc/certtool.cfg b/doc/certtool.cfg
index c700ff6..7b86833 100644
--- a/doc/certtool.cfg
+++ b/doc/certtool.cfg
@@ -69,7 +69,7 @@ email = "address@hidden"
 signing_key
 
 # Whether this certificate will be used to encrypt data (needed
-# in TLS RSA ciphersuites). Note that it is prefered to use different
+# in TLS RSA ciphersuites). Note that it is preferred to use different
 # keys for encryption and signing.
 #encryption_key
 
diff --git a/doc/gnutls.texi b/doc/gnutls.texi
index 636ac07..b1012b8 100644
--- a/doc/gnutls.texi
+++ b/doc/gnutls.texi
@@ -3059,7 +3059,7 @@ email = "none@@none.org"
 signing_key
 
 # Whether this certificate will be used to encrypt data (needed
-# in TLS RSA ciphersuites). Note that it is prefered to use different
+# in TLS RSA ciphersuites). Note that it is preferred to use different
 # keys for encryption and signing.
 #encryption_key
 
diff --git a/lib/gnutls_auth.c b/lib/gnutls_auth.c
index 6aa6723..999aa20 100644
--- a/lib/gnutls_auth.c
+++ b/lib/gnutls_auth.c
@@ -273,7 +273,7 @@ out:
   * _gnutls_get_auth_info - Returns a pointer to authentication information.
   * @session: is a #gnutls_session_t structure.
   *
-  * This function must be called after a succesful gnutls_handshake().
+  * This function must be called after a successful gnutls_handshake().
   * Returns a pointer to authentication information. That information
   * is data obtained by the handshake protocol, the key exchange algorithm,
   * and the TLS extensions messages.
diff --git a/lib/gnutls_priority.c b/lib/gnutls_priority.c
index 7fab2c7..8700f90 100644
--- a/lib/gnutls_priority.c
+++ b/lib/gnutls_priority.c
@@ -480,7 +480,7 @@ gnutls_priority_set (gnutls_session_t session, 
gnutls_priority_t priority)
  * compression NULL; for certificate types X.509, OpenPGP.
  *
  * For key exchange algorithms when in NORMAL or SECURE levels the
- * perfect forward secrecy algorithms take precendence of the other
+ * perfect forward secrecy algorithms take precedence of the other
  * protocols.  In all cases all the supported key exchange algorithms
  * are enabled (except for the RSA-EXPORT which is only enabled in
  * EXPORT level).
diff --git a/lib/gnutls_session.c b/lib/gnutls_session.c
index 2a3419b..864f09c 100644
--- a/lib/gnutls_session.c
+++ b/lib/gnutls_session.c
@@ -40,7 +40,7 @@
   * successful handshake.
   *
   * Resuming sessions is really useful and speedups connections after
-  * a succesful one.
+  * a successful one.
   *
   * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
   *   an error code is returned.
@@ -95,7 +95,7 @@ error:
  * gnutls_free().
  *
  * Resuming sessions is really useful and speedups connections after
- * a succesful one.
+ * a successful one.
  *
  * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise
  *   an error code is returned.
diff --git a/lib/openpgp/pgp.c b/lib/openpgp/pgp.c
index 0d62b36..ee97c1e 100644
--- a/lib/openpgp/pgp.c
+++ b/lib/openpgp/pgp.c
@@ -1565,7 +1565,7 @@ gnutls_openpgp_crt_get_preferred_key_id 
(gnutls_openpgp_crt_t key,
 }
 
 /**
- * gnutls_openpgp_crt_set_preferred_key_id - Sets the prefered keyID
+ * gnutls_openpgp_crt_set_preferred_key_id - Sets the preferred keyID
  * @key: the structure that contains the OpenPGP public key.
  * @keyid: the selected keyid
  *
diff --git a/lib/openpgp/privkey.c b/lib/openpgp/privkey.c
index 7a9c7cc..b6180fc 100644
--- a/lib/openpgp/privkey.c
+++ b/lib/openpgp/privkey.c
@@ -1145,7 +1145,7 @@ gnutls_openpgp_privkey_get_preferred_key_id 
(gnutls_openpgp_privkey_t key,
 }
 
 /**
- * gnutls_openpgp_privkey_set_preferred_key_id - Set the prefered keyID
+ * gnutls_openpgp_privkey_set_preferred_key_id - Set the preferred keyID
  * @key: the structure that contains the OpenPGP public key.
  * @keyid: the selected keyid
  *


hooks/post-receive
-- 
GNU gnutls




reply via email to

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