From: Michael Paquier Date: Thu, 20 Feb 2025 00:30:54 +0000 (+0900) Subject: test_escape: Fix output of --help X-Git-Tag: REL_18_BETA1~830 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=9b1cb58c5f2127ddc682778b486739059ea2479d;p=postgresql.git test_escape: Fix output of --help The short option name -f was not listed, only its long option name --force-unsupported. Author: Japin Li Discussion: https://postgr.es/m/ME0P300MB04452BD1FB1B277D4C1C20B9B6C52@ME0P300MB0445.AUSP300.PROD.OUTLOOK.COM Backpatch-through: 13 --- diff --git a/src/test/modules/test_escape/test_escape.c b/src/test/modules/test_escape/test_escape.c index a8e9c3cb518..f6b36448977 100644 --- a/src/test/modules/test_escape/test_escape.c +++ b/src/test/modules/test_escape/test_escape.c @@ -801,7 +801,7 @@ usage(const char *hint) " -c, --conninfo=CONNINFO connection information to use\n" " -v, --verbose show test details even for successes\n" " -q, --quiet only show failures\n" - " --force-unsupported test invalid input even if unsupported\n" + " -f, --force-unsupported test invalid input even if unsupported\n" ); if (hint)