diff options
author | Peter Eisentraut | 2000-05-14 18:05:05 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-05-14 18:05:05 +0000 |
commit | d64aa21570887f43ee5eaea2bf2e06b628903f34 (patch) | |
tree | a712a59253335a1eaf6ac59050ba5497f12daff2 | |
parent | f87772b72295a1cfd75186ebd11155f9ba247427 (diff) |
That psql option should be --no-readline (as it used to be), not --noreadline.
-rw-r--r-- | src/bin/psql/startup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 805d7be8193..46c77ca3b23 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.32 2000/05/12 16:28:31 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.33 2000/05/14 18:05:05 petere Exp $ */ #include "postgres.h" @@ -314,7 +314,7 @@ parse_psql_options(int argc, char *argv[], struct adhoc_opts * options) {"host", required_argument, NULL, 'h'}, {"html", no_argument, NULL, 'H'}, {"list", no_argument, NULL, 'l'}, - {"noreadline", no_argument, NULL, 'n'}, + {"no-readline", no_argument, NULL, 'n'}, {"output", required_argument, NULL, 'o'}, {"port", required_argument, NULL, 'p'}, {"pset", required_argument, NULL, 'P'}, |