diff options
author | Peter Eisentraut | 2009-02-26 16:20:55 +0000 |
---|---|---|
committer | Peter Eisentraut | 2009-02-26 16:20:55 +0000 |
commit | 257c4ff160534ea4f90ab2d566cb877297b31844 (patch) | |
tree | 3be5122169c08c89181c2b0785e325b9dacbdddf /src/bin/scripts/dropuser.c | |
parent | 9de59fd191dc86e7a49a5d7726ef09041549fc88 (diff) |
Final removal of -q options, which haven't done anything since 8.3 and
were marked for removal in 8.4.
Diffstat (limited to 'src/bin/scripts/dropuser.c')
-rw-r--r-- | src/bin/scripts/dropuser.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/bin/scripts/dropuser.c b/src/bin/scripts/dropuser.c index be2e2ceda6a..5bd2ef3d452 100644 --- a/src/bin/scripts/dropuser.c +++ b/src/bin/scripts/dropuser.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/scripts/dropuser.c,v 1.27 2009/02/26 16:02:39 petere Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/dropuser.c,v 1.28 2009/02/26 16:20:55 petere Exp $ * *------------------------------------------------------------------------- */ @@ -28,7 +28,6 @@ main(int argc, char *argv[]) {"no-password", no_argument, NULL, 'w'}, {"password", no_argument, NULL, 'W'}, {"echo", no_argument, NULL, 'e'}, - {"quiet", no_argument, NULL, 'q'}, {"interactive", no_argument, NULL, 'i'}, {NULL, 0, NULL, 0} }; @@ -55,7 +54,7 @@ main(int argc, char *argv[]) handle_help_version_opts(argc, argv, "dropuser", help); - while ((c = getopt_long(argc, argv, "h:p:U:wWeqi", long_options, &optindex)) != -1) + while ((c = getopt_long(argc, argv, "h:p:U:wWei", long_options, &optindex)) != -1) { switch (c) { @@ -77,9 +76,6 @@ main(int argc, char *argv[]) case 'e': echo = true; break; - case 'q': - /* obsolete; remove in 8.4 */ - break; case 'i': interactive = true; break; |