aboutsummaryrefslogtreecommitdiff
path: root/include/openssl/ct.h
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-04-04 16:11:43 -0400
committerRich Salz <rsalz@openssl.org>2016-04-04 16:11:43 -0400
commite771eea6d8ca3caa48076367ee86c3b55249dcb3 (patch)
tree05324dd4eaec6cb827c737c7d5a6c39b9585f233 /include/openssl/ct.h
parent9f2a142b13a8fc37b811bc590baf847cc6be7ab3 (diff)
downloadopenssl-e771eea6d8ca3caa48076367ee86c3b55249dcb3.zip
openssl-e771eea6d8ca3caa48076367ee86c3b55249dcb3.tar.gz
openssl-e771eea6d8ca3caa48076367ee86c3b55249dcb3.tar.bz2
Revert "various spelling fixes"
This reverts commit 620d540bd47a96fb6905fbbdd8ea5167a8841a3e. It wasn't reviewed. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include/openssl/ct.h')
-rw-r--r--include/openssl/ct.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/openssl/ct.h b/include/openssl/ct.h
index fa25c69..0da3125 100644
--- a/include/openssl/ct.h
+++ b/include/openssl/ct.h
@@ -367,7 +367,7 @@ __owur int SCT_LIST_validate(const STACK_OF(SCT) *scts,
* for data that caller is responsible for freeing (only if function returns
* successfully).
* If "pp" is NULL and "*pp" is not NULL, caller is responsible for ensuring
- * that "*pp" is large enough to accept all of the serialized data.
+ * that "*pp" is large enough to accept all of the serializied data.
* Returns < 0 on error, >= 0 indicating bytes written (or would have been)
* on success.
*/
@@ -394,7 +394,7 @@ STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
* for data that caller is responsible for freeing (only if function returns
* successfully).
* If "pp" is NULL and "*pp" is not NULL, caller is responsible for ensuring
- * that "*pp" is large enough to accept all of the serialized data.
+ * that "*pp" is large enough to accept all of the serializied data.
* Returns < 0 on error, >= 0 indicating bytes written (or would have been)
* on success.
*/
@@ -428,7 +428,7 @@ __owur int i2o_SCT(const SCT *sct, unsigned char **out);
* Parses an SCT in TLS format and returns it.
* If |psct| is not null, it will end up pointing to the parsed SCT. If it
* already points to a non-null pointer, the pointer will be free'd.
- * |in| should be a pointer to a string containing the TLS-format SCT.
+ * |in| should be a pointer to a string contianing the TLS-format SCT.
* |in| will be advanced to the end of the SCT if parsing succeeds.
* |len| should be the length of the SCT in |in|.
* Returns NULL if an error occurs.
@@ -449,7 +449,7 @@ __owur int i2o_SCT_signature(const SCT *sct, unsigned char **out);
/*
* Parses an SCT signature in TLS format and populates the |sct| with it.
-* |in| should be a pointer to a string containing the TLS-format signature.
+* |in| should be a pointer to a string contianing the TLS-format signature.
* |in| will be advanced to the end of the signature if parsing succeeds.
* |len| should be the length of the signature in |in|.
* Returns the number of bytes parsed, or a negative integer if an error occurs.