summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2025-02-20 09:31:01 +0900
committerMichael Paquier <michael@paquier.xyz>2025-02-20 09:31:01 +0900
commite7f72185062ca1c76334e1d6de35ec17a2489234 (patch)
tree9c8d9a63faa928b2846f17544b6fe3d81e5d9293
parent587b6aa3f3cea5d30e65317c34d0cae288edaa6d (diff)
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
-rw-r--r--src/test/modules/test_escape/test_escape.c2
1 files changed, 1 insertions, 1 deletions
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)