]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix a few misspellings.
authorFdaSilvaYY <fdasilvayy@gmail.com>
Thu, 17 Nov 2016 22:55:43 +0000 (23:55 +0100)
committerMatt Caswell <matt@openssl.org>
Wed, 25 Jan 2017 09:06:34 +0000 (09:06 +0000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1618)

ssl/ssl_ciph.c
ssl/ssl_lib.c
ssl/ssl_locl.h

index feef184c489215a01d9a7a179b89f70a7e96e922..88b99cca142fea7ef7cfe6a3bcc8d931eb27b57f 100644 (file)
@@ -1602,7 +1602,7 @@ char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len)
     case SSL_aGOST01:
         au = "GOST01";
         break;
-        /* New GOST ciphersuites have both SSL_aGOST12 and SSL_aGOST01 bits */
+    /* New GOST ciphersuites have both SSL_aGOST12 and SSL_aGOST01 bits */
     case (SSL_aGOST12 | SSL_aGOST01):
         au = "GOST12";
         break;
index fe17f3d64ce34a450c20ce58eb0c3d35e62bbcd7..c25f76f344f937ce382d71881a9f6ef1b507788c 100644 (file)
@@ -3778,8 +3778,8 @@ void SSL_set_not_resumable_session_callback(SSL *ssl,
 /*
  * Allocates new EVP_MD_CTX and sets pointer to it into given pointer
  * variable, freeing EVP_MD_CTX previously stored in that variable, if any.
- * If EVP_MD pointer is passed, initializes ctx with this md Returns newly
- * allocated ctx;
+ * If EVP_MD pointer is passed, initializes ctx with this md.
+ * Returns the newly allocated ctx;
  */
 
 EVP_MD_CTX *ssl_replace_hash(EVP_MD_CTX **hash, const EVP_MD *md)
index 27bfd9e1f0f35a4601495cd5c39a9459448819c6..c7e7872dbd495ca4f0955b0b36f9104752d12c28 100644 (file)
@@ -1118,7 +1118,7 @@ struct ssl_st {
      * If they are not, the connection should be aborted.
      */
     ssl_ct_validation_cb ct_validation_callback;
-    /* User-supplied argument tha tis passed to the ct_validation_callback */
+    /* User-supplied argument thais passed to the ct_validation_callback */
     void *ct_validation_callback_arg;
     /*
      * Consolidated stack of SCTs from all sources.
@@ -1525,8 +1525,8 @@ typedef struct cert_st {
     /*
      * Client authentication signature algorithms, if not set then uses
      * conf_sigalgs. On servers these will be the signature algorithms sent
-     * to the client in a cerificate request for TLS 1.2. On a client this
-     * represents the signature algortithms we are willing to use for client
+     * to the client in a certificate request for TLS 1.2. On a client this
+     * represents the signature algorithms we are willing to use for client
      * authentication.
      */
     unsigned int *client_sigalgs;