Project homepage Mailing List  Warmcat.com  API Docs  Github Mirror 
{"schema":"libjg2-1", "vpath":"/git/", "avatar":"/git/avatar/", "alang":"", "gen_ut":1753412418, "reponame":"openssl", "desc":"OpenSSL", "owner": { "name": "Andy Green", "email": "andy@warmcat.com", "md5": "c50933ca2aa61e0fe2c43d46bb6b59cb" },"url":"https://warmcat.com/repo/openssl", "f":3, "items": [ {"schema":"libjg2-1", "cid":"3cb2ed485b18dce271e9344bc9bb6df1", "commit": {"type":"commit", "time": 1502460993, "time_ofs": 18446744073709551376, "oid_tree": { "oid": "6ae18242aeeab06ea032a3642fcf475835e81c5c", "alias": []}, "oid":{ "oid": "44e699515568abcae0e77d7315f9b5e393daa6d9", "alias": []}, "msg": "Fix some Typos and indents", "sig_commit": { "git_time": { "time": 1502460993, "offset": -240 }, "name": "Rich Salz", "email": "rsalz@openssl.org", "md5": "3ed6b9cf7bbe83902a044f6590346d26" }, "sig_author": { "git_time": { "time": 1502460922, "offset": -240 }, "name": "FdaSilvaYY", "email": "fdasilvayy@gmail.com", "md5": "aa048db1fe1abb73416dee77b8d18f7f" }}, "body": "Fix some Typos and indents\n\nReviewed-by: Andy Polyakov \u003cappro@openssl.org\u003e\nReviewed-by: Rich Salz \u003crsalz@openssl.org\u003e\n(Merged from https://github.com/openssl/openssl/pull/4108)\n" , "diff": "diff --git a/apps/req.c b/apps/req.c\nindex f43dae5..dab67a0 100644\n--- a/apps/req.c\n+++ b/apps/req.c\n@@ -1305,7 +1305,7 @@ static int check_end(const char *str, const char *end)\n \n /*\n * Merge the two strings together into the result buffer checking for\n- * overflow and producing an error message is there is.\n+ * overflow and producing an error message if there is.\n */\n static int join(char buf[], size_t buf_size, const char *name,\n const char *tail, const char *desc)\ndiff --git a/doc/man3/SSL_CONF_cmd.pod b/doc/man3/SSL_CONF_cmd.pod\nindex 529acdc..a812186 100644\n--- a/doc/man3/SSL_CONF_cmd.pod\n+++ b/doc/man3/SSL_CONF_cmd.pod\n@@ -480,7 +480,7 @@ SSLv3 is B\u003calways\u003e disabled and attempt to override this by the user are\n ignored.\n \n By checking the return code of SSL_CONF_cmd() it is possible to query if a\n-given B\u003ccmd\u003e is recognised, this is useful is SSL_CONF_cmd() values are\n+given B\u003ccmd\u003e is recognised, this is useful if SSL_CONF_cmd() values are\n mixed with additional application specific operations.\n \n For example an application might call SSL_CONF_cmd() and if it returns\ndiff --git a/include/internal/o_dir.h b/include/internal/o_dir.h\nindex b852751..f18fc67 100644\n--- a/include/internal/o_dir.h\n+++ b/include/internal/o_dir.h\n@@ -45,12 +45,12 @@ extern \u0022C\u0022 {\n \n typedef struct OPENSSL_dir_context_st OPENSSL_DIR_CTX;\n \n- /*\n- * returns NULL on error or end-of-directory. If it is end-of-directory,\n- * errno will be zero\n- */\n+/*\n+ * returns NULL on error or end-of-directory. If it is end-of-directory,\n+ * errno will be zero\n+ */\n const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory);\n- /* returns 1 on success, 0 on error */\n+/* returns 1 on success, 0 on error */\n int OPENSSL_DIR_end(OPENSSL_DIR_CTX **ctx);\n \n #ifdef __cplusplus\ndiff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h\nindex c78c28f..8b8625d 100644\n--- a/ssl/ssl_locl.h\n+++ b/ssl/ssl_locl.h\n@@ -2364,7 +2364,7 @@ typedef enum ticket_en {\n TICKET_NO_DECRYPT,\n /* a ticket was successfully decrypted */\n TICKET_SUCCESS,\n- /* same as above but the ticket needs to be reneewed */\n+ /* same as above but the ticket needs to be renewed */\n TICKET_SUCCESS_RENEW\n } TICKET_RETURN;\n \ndiff --git a/ssl/statem/extensions.c b/ssl/statem/extensions.c\nindex f62b1fe..2268b27 100644\n--- a/ssl/statem/extensions.c\n+++ b/ssl/statem/extensions.c\n@@ -720,7 +720,7 @@ int tls_construct_extensions(SSL *s, WPACKET *pkt, unsigned int context,\n \n /* Add custom extensions first */\n if ((context \u0026 SSL_EXT_CLIENT_HELLO) !\u003d 0) {\n- /* On the server side with initiase during ClientHello parsing */\n+ /* On the server side with initialise during ClientHello parsing */\n custom_ext_init(\u0026s-\u003ecert-\u003ecustext);\n }\n if (!custom_ext_add(s, context, pkt, x, chainidx, max_version, \u0026tmpal)) {\ndiff --git a/ssl/statem/extensions_srvr.c b/ssl/statem/extensions_srvr.c\nindex a3c2fbf..a70f53b 100644\n--- a/ssl/statem/extensions_srvr.c\n+++ b/ssl/statem/extensions_srvr.c\n@@ -87,10 +87,9 @@ int tls_parse_ctos_server_name(SSL *s, PACKET *pkt, unsigned int context,\n }\n \n /*\n- * Although the server_name extension was intended to be\n- * extensible to new name types, RFC 4366 defined the\n- * syntax inextensibly and OpenSSL 1.0.x parses it as\n- * such.\n+ * Although the intent was for server_name to be extensible, RFC 4366\n+ * was not clear about it; and so OpenSSL among other implementations,\n+ * always and only allows a 'host_name' name types.\n * RFC 6066 corrected the mistake but adding new name types\n * is nevertheless no longer feasible, so act as if no other\n * SNI types can exist, to simplify parsing.\ndiff --git a/test/README.external b/test/README.external\nindex b4b011b..ab0f7c2 100644\n--- a/test/README.external\n+++ b/test/README.external\n@@ -126,7 +126,7 @@ explicitly run (with more debugging):\n \n $ VERBOSE\u003d1 make TESTS\u003dtest_external_krb5 test\n \n-Test failures supressions\n+Test-failures suppressions\n -------------------------\n \n krb5 will automatically adapt its test suite to account for the configuration\ndiff --git a/test/handshake_helper.c b/test/handshake_helper.c\nindex 6584e4d..d200332 100644\n--- a/test/handshake_helper.c\n+++ b/test/handshake_helper.c\n@@ -855,7 +855,7 @@ static void do_reneg_setup_step(const SSL_TEST_CTX *test_ctx, PEER *peer)\n if (!SSL_renegotiate_pending(peer-\u003essl)) {\n /*\n * If we are the client we will always attempt to resume the\n- * session. The server may or may not resume dependant on the\n+ * session. The server may or may not resume dependent on the\n * setting of SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION\n */\n if (SSL_is_server(peer-\u003essl)) {\ndiff --git a/test/secmemtest.c b/test/secmemtest.c\nindex a6ccc3b..9efa2c8 100644\n--- a/test/secmemtest.c\n+++ b/test/secmemtest.c\n@@ -32,7 +32,7 @@ static int test_sec_mem(void)\n if (!TEST_ptr(p)\n /* r \u003d non-secure 20, p \u003d secure 20, s \u003d non-secure 20 */\n || !TEST_true(CRYPTO_secure_allocated(p))\n- /* 20 secure -\u003e 32-byte minimum allocaton unit */\n+ /* 20 secure -\u003e 32-byte minimum allocation unit */\n || !TEST_size_t_eq(CRYPTO_secure_used(), 32))\n goto end;\n q \u003d OPENSSL_malloc(20);\ndiff --git a/test/ssltest_old.c b/test/ssltest_old.c\nindex 37e980d..3a8d9b2 100644\n--- a/test/ssltest_old.c\n+++ b/test/ssltest_old.c\n@@ -2144,7 +2144,7 @@ int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count,\n * Useful functions for querying the state of BIO pair endpoints:\n *\n * BIO_ctrl_pending(bio) number of bytes we can read now\n- * BIO_ctrl_get_read_request(bio) number of bytes needed to fulfil\n+ * BIO_ctrl_get_read_request(bio) number of bytes needed to fulfill\n * other side's read attempt\n * BIO_ctrl_get_write_guarantee(bio) number of bytes we can write now\n *\ndiff --git a/test/tls13secretstest.c b/test/tls13secretstest.c\nindex 9f32fdf..1c47e41 100644\n--- a/test/tls13secretstest.c\n+++ b/test/tls13secretstest.c\n@@ -289,7 +289,7 @@ static int test_handshake_secrets(void)\n \n if (!TEST_true(tls13_generate_handshake_secret(s, ecdhe_secret,\n sizeof(ecdhe_secret)))) {\n- TEST_info(\u0022Hanshake secret generation failed\u0022);\n+ TEST_info(\u0022Handshake secret generation failed\u0022);\n goto err;\n }\n \ndiff --git a/util/dofile.pl b/util/dofile.pl\nindex 8b0c7b4..0d05574 100644\n--- a/util/dofile.pl\n+++ b/util/dofile.pl\n@@ -91,7 +91,7 @@ package main;\n # Helper functions for the templates #################################\n \n # It might be practical to quotify some strings and have them protected\n-# from possible harm. These functions primarly quote things that might\n+# from possible harm. These functions primarily quote things that might\n # be interpreted wrongly by a perl eval.\n \n # quotify1 STRING\ndiff --git a/util/find-doc-nits b/util/find-doc-nits\nindex 2623d6c..7f5f1eb 100755\n--- a/util/find-doc-nits\n+++ b/util/find-doc-nits\n@@ -289,7 +289,7 @@ sub checkmacros()\n }\n close(IN);\n }\n- print \u0022# Found $count macros missing (not all should be documnted)\u005cn\u0022\n+ print \u0022# Found $count macros missing (not all should be documented)\u005cn\u0022\n }\n \n sub printem()\ndiff --git a/util/openssl-format-source b/util/openssl-format-source\nindex 3dcc128..2655e9c 100755\n--- a/util/openssl-format-source\n+++ b/util/openssl-format-source\n@@ -111,7 +111,7 @@ do\n \t # the process-comments options and then undo that marking, and then \n \t # finally re-run indent without process-comments so the marked-to-\n \t # be-ignored comments we did automatically end up getting moved \n-\t # into the right possition within the code as indent leaves marked \n+\t # into the right position within the code as indent leaves marked \n \t # comments entirely untouched - we appear to have no way to avoid \n \t # the double processing and get the desired output\n \t cat \u0022$j\u0022 | \u005c\n","s":{"c":1753412418,"u": 53710}} ],"g": 55241,"chitpc": 0,"ehitpc": 0,"indexed":0 , "ab": 0, "si": 0, "db":0, "di":0, "sat":0, "lfc": "0000"}