From 722a2ba9bb647559def5f6d826fe9886973910d4 Mon Sep 17 00:00:00 2001 From: Hayato Kuroda Date: Mon, 29 Jan 2024 08:43:11 +0000 Subject: [PATCH v10 2/4] fix getopt options --- src/bin/pg_basebackup/pg_subscriber.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_basebackup/pg_subscriber.c b/src/bin/pg_basebackup/pg_subscriber.c index cb97dbda5e..df770f0fc8 100644 --- a/src/bin/pg_basebackup/pg_subscriber.c +++ b/src/bin/pg_basebackup/pg_subscriber.c @@ -1448,7 +1448,7 @@ main(int argc, char **argv) } #endif - while ((c = getopt_long(argc, argv, "D:P:S:d:nv", + while ((c = getopt_long(argc, argv, "D:P:S:d:nrt:v", long_options, &option_index)) != -1) { switch (c) -- 2.43.0