From: Daniel Bevenius Date: Thu, 29 Apr 2021 12:46:28 +0000 (+0200) Subject: Fix typo in OSSL_DECODER_CTX_set_input_structure X-Git-Tag: openssl-3.0.0-alpha16~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4489655c23f1f7f412309e25a5b9fd7acf7db3f2;p=thirdparty%2Fopenssl.git Fix typo in OSSL_DECODER_CTX_set_input_structure Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15085) --- diff --git a/crypto/encode_decode/decoder_lib.c b/crypto/encode_decode/decoder_lib.c index e37989fec46..45aeb39184d 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;