]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix typo in OSSL_DECODER_CTX_set_input_structure
authorDaniel Bevenius <daniel.bevenius@gmail.com>
Thu, 29 Apr 2021 12:46:28 +0000 (14:46 +0200)
committerTomas Mraz <tomas@openssl.org>
Fri, 30 Apr 2021 14:38:57 +0000 (16:38 +0200)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15085)

crypto/encode_decode/decoder_lib.c

index e37989fec4618307710b1268929cf97a6643f0c6..45aeb39184d1f74b751fdaea35bfb482c09366bf 100644 (file)
@@ -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;