diff options
author | Andreas Metzler <ametzler@downhill.at.eu.org> | 2010-01-04 23:56:08 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-01-04 23:56:08 -0500 |
commit | 74d964c9f72bfa238ad485f20e46ece4336556eb (patch) | |
tree | 518780fe1b477c7dddc6b7f20cf5ece7b3a2fa5c | |
parent | a583d7e2f56b377bf53b0e9b91f981271831dfec (diff) | |
download | gnutls-74d964c9f72bfa238ad485f20e46ece4336556eb.tar.gz |
Typo fixes: successful, precedence, preferred
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | doc/certtool.cfg | 2 | ||||
-rw-r--r-- | doc/gnutls.texi | 2 | ||||
-rw-r--r-- | lib/gnutls_auth.c | 2 | ||||
-rw-r--r-- | lib/gnutls_priority.c | 2 | ||||
-rw-r--r-- | lib/gnutls_session.c | 4 | ||||
-rw-r--r-- | lib/openpgp/pgp.c | 2 | ||||
-rw-r--r-- | lib/openpgp/privkey.c | 2 |
8 files changed, 9 insertions, 9 deletions
@@ -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 <simon@josefsson.org> diff --git a/doc/certtool.cfg b/doc/certtool.cfg index c700ff64de..7b86833dc5 100644 --- a/doc/certtool.cfg +++ b/doc/certtool.cfg @@ -69,7 +69,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/doc/gnutls.texi b/doc/gnutls.texi index 636ac070a9..b1012b8de5 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 6aa6723d2c..999aa20eb5 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 7fab2c797d..8700f90fb3 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 2a3419b42d..864f09c16d 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 0d62b36409..ee97c1e778 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 7a9c7cc6e7..b6180fc99e 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 * |