From: Saurabh Kushwah <110624181+Saurabh825@users.noreply.github.com> Date: Wed, 30 Jul 2025 12:36:57 +0000 (+0530) Subject: apps/asn1parse.c: correct help text order for -genstr option X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af31cc62caaa75f54ed9275d2c2d4eccffa40324;p=thirdparty%2Fopenssl.git apps/asn1parse.c: correct help text order for -genstr option CLA: trivial Reviewed-by: Dmitry Belyavskiy Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28123) (cherry picked from commit eac588ac360ca16e0f9979b6c70708f1e8991b4f) --- diff --git a/apps/asn1parse.c b/apps/asn1parse.c index 129b867c8cc..04263eeb034 100644 --- a/apps/asn1parse.c +++ b/apps/asn1parse.c @@ -40,8 +40,8 @@ const OPTIONS asn1parse_options[] = { {"length", OPT_LENGTH, 'p', "length of section in file"}, {"strparse", OPT_STRPARSE, 'p', "offset; a series of these can be used to 'dig'"}, - {"genstr", OPT_GENSTR, 's', "string to generate ASN1 structure from"}, {OPT_MORE_STR, 0, 0, "into multiple ASN1 blob wrappings"}, + {"genstr", OPT_GENSTR, 's', "string to generate ASN1 structure from"}, {"genconf", OPT_GENCONF, 's', "file to generate ASN1 structure from"}, {"strictpem", OPT_STRICTPEM, 0, "do not attempt base64 decode outside PEM markers"},