From: Bob Beck Date: Mon, 1 Dec 2025 17:19:49 +0000 (-0700) Subject: nits in progs.pl X-Git-Tag: 3.6-PRE-CLANG-FORMAT-WEBKIT~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46e1c56b8e1be60af282bd44cac5c74f27d99cf7;p=thirdparty%2Fopenssl.git nits in progs.pl Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/29243) --- diff --git a/apps/progs.pl b/apps/progs.pl index df2f8e32f92..7abc483a9b9 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*,/;