aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-03-10 22:36:14 -0500
committerBruce Momjian <bruce@momjian.us>2011-03-10 22:36:14 -0500
commitc3462e413e8700b4710a6d23252fd095291c27e3 (patch)
tree19fee8e15acdf60488b4069e3be30e0ba465300f /src
parent3f9cf6b336fb93f4e13943d9e873f5a4a167177a (diff)
downloadpostgresql-c3462e413e8700b4710a6d23252fd095291c27e3.tar.gz
postgresql-c3462e413e8700b4710a6d23252fd095291c27e3.zip
Add C comment that new new pg_dump -X options are to be created.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_dump.c5
1 files changed, 4 insertions, 1 deletions
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)