summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2021-04-29 14:46:28 +0200
committerTomas Mraz <tomas@openssl.org>2021-04-30 16:38:57 +0200
commit4489655c23f1f7f412309e25a5b9fd7acf7db3f2 (patch)
tree55d18c9f174397b79c15d16d1e1af9ef89a76fe3
parentb7f7a15f6ace4e6e25f8222a9996159582983aa8 (diff)
Fix typo in OSSL_DECODER_CTX_set_input_structure
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15085)
-rw-r--r--crypto/encode_decode/decoder_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/encode_decode/decoder_lib.c b/crypto/encode_decode/decoder_lib.c
index e37989fec4..45aeb39184 100644
--- a/crypto/encode_decode/decoder_lib.c
+++ b/crypto/encode_decode/decoder_lib.c
@@ -183,8 +183,8 @@ int OSSL_DECODER_CTX_set_input_structure(OSSL_DECODER_CTX *ctx,
}
/*
- * NULL is a valid starting input type, and means that the caller leaves
- * it to code to discover what the starting input type is.
+ * NULL is a valid starting input structure, and means that the caller
+ * leaves it to code to discover what the starting input structure is.
*/
ctx->input_structure = input_structure;
return 1;