From c3462e413e8700b4710a6d23252fd095291c27e3 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 10 Mar 2011 22:36:14 -0500 Subject: [PATCH] Add C comment that new new pg_dump -X options are to be created. --- src/bin/pg_dump/pg_dump.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 08845173311..feeeae8e560 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -469,7 +469,10 @@ main(int argc, char **argv) break; case 'X': - /* -X is a deprecated alternative to long options */ + /* + * -X is a deprecated alternative to long options; + * no new -X options are to be added. + */ if (strcmp(optarg, "disable-dollar-quoting") == 0) disable_dollar_quoting = 1; else if (strcmp(optarg, "disable-triggers") == 0)