From: Bob Beck Date: Mon, 1 Dec 2025 17:19:49 +0000 (-0700) Subject: nits in progs.pl X-Git-Tag: 3.3-PRE-CLANG-FORMAT-WEBKIT~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc505bfaa777101d4d62db6df7fd05a2bc95a370;p=thirdparty%2Fopenssl.git nits in progs.pl Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/29257) --- diff --git a/apps/progs.pl b/apps/progs.pl index c2ef15c64ed..b0ad006c07e 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -19,7 +19,7 @@ die "Unrecognised option, must be -C or -H\n" unless ($opt eq '-H' || $opt eq '-C'); my %commands = (); -# XXX beck I think it is best reconsidered in favour of just a table +# I think it is best reconsidered in favour of just a table # of commands instead of this fragile regex. There really are not that # many commands. my $cmdre = qr/^\s*(int\s+|)\s*([a-z_][a-z0-9_]*)_main\s*\(\s*int\s+argc\s*,/;