From e34307b8ac51a57d300e3a302de410eb6c726b40 Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Tue, 18 May 2021 11:23:13 +0200 Subject: [PATCH] find-doc-nits -c: Fix handling in case expected helpstr is not found Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15329) --- util/find-doc-nits | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/find-doc-nits b/util/find-doc-nits index e8439b86261..fd465f6d0be 100755 --- a/util/find-doc-nits +++ b/util/find-doc-nits @@ -1048,7 +1048,8 @@ sub checkflags { next if m/^\s*#\s*if/; err("$cmd does not implement help for -$expect_helpstr") unless m/^\s*"/; $expect_helpstr = ""; - } elsif (m/\{\s*"([^"]+)"\s*,\s*OPT_[A-Z0-9_]+\s*,\s*('[-\/:<>cEfFlMnNpsuU]'|0)\s*,(.*)$/ + } + if (m/\{\s*"([^"]+)"\s*,\s*OPT_[A-Z0-9_]+\s*,\s*('[-\/:<>cEfFlMnNpsuU]'|0)\s*,(.*)$/ && !($cmd eq "s_client" && $1 eq "wdebug")) { push @cmdopts, $1; $expect_helpstr = $1; -- 2.47.3