aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-05-04 13:04:46 +0200
committerPeter Eisentraut <peter@eisentraut.org>2025-05-07 08:23:44 +0200
commitc0cf28255178f1d6e20a26c8df0a4cfdd0ab3b24 (patch)
treefd2f3b34facf211d045813a0ac10c409b3af3b9a
parentc11bd5f500f0b774a766ed67b769d63abdbdae91 (diff)
downloadpostgresql-c0cf28255178f1d6e20a26c8df0a4cfdd0ab3b24.tar.gz
postgresql-c0cf28255178f1d6e20a26c8df0a4cfdd0ab3b24.zip
Remove some tabs in C string literals
-rw-r--r--src/test/modules/oauth_validator/oauth_hook_client.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/modules/oauth_validator/oauth_hook_client.c b/src/test/modules/oauth_validator/oauth_hook_client.c
index 9f553792c05..15d0cf938a8 100644
--- a/src/test/modules/oauth_validator/oauth_hook_client.c
+++ b/src/test/modules/oauth_validator/oauth_hook_client.c
@@ -35,15 +35,15 @@ usage(char *argv[])
printf("usage: %s [flags] CONNINFO\n\n", argv[0]);
printf("recognized flags:\n");
- printf(" -h, --help show this message\n");
- printf(" --expected-scope SCOPE fail if received scopes do not match SCOPE\n");
- printf(" --expected-uri URI fail if received configuration link does not match URI\n");
- printf(" --misbehave=MODE have the hook fail required postconditions\n"
- " (MODEs: no-hook, fail-async, no-token, no-socket)\n");
- printf(" --no-hook don't install OAuth hooks\n");
- printf(" --hang-forever don't ever return a token (combine with connect_timeout)\n");
- printf(" --token TOKEN use the provided TOKEN value\n");
- printf(" --stress-async busy-loop on PQconnectPoll rather than polling\n");
+ printf(" -h, --help show this message\n");
+ printf(" --expected-scope SCOPE fail if received scopes do not match SCOPE\n");
+ printf(" --expected-uri URI fail if received configuration link does not match URI\n");
+ printf(" --misbehave=MODE have the hook fail required postconditions\n"
+ " (MODEs: no-hook, fail-async, no-token, no-socket)\n");
+ printf(" --no-hook don't install OAuth hooks\n");
+ printf(" --hang-forever don't ever return a token (combine with connect_timeout)\n");
+ printf(" --token TOKEN use the provided TOKEN value\n");
+ printf(" --stress-async busy-loop on PQconnectPoll rather than polling\n");
}
/* --options */