diff options
| author | Peter Eisentraut | 2009-02-26 16:20:55 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2009-02-26 16:20:55 +0000 |
| commit | f2ef37ec61546cafdb7cd97c7238b76e1fd88dd9 (patch) | |
| tree | a639476d3a6fd80f6f1f7e4a13de5cd55babac7f /src/bin/scripts/createuser.c | |
| parent | 624f8e83064c7a06053403e13ad0a773c8689f02 (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/createuser.c')
| -rw-r--r-- | src/bin/scripts/createuser.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bin/scripts/createuser.c b/src/bin/scripts/createuser.c index 7f30d5080d..b2af4155fe 100644 --- a/src/bin/scripts/createuser.c +++ b/src/bin/scripts/createuser.c @@ -27,7 +27,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'}, {"createdb", no_argument, NULL, 'd'}, {"no-createdb", no_argument, NULL, 'D'}, {"superuser", no_argument, NULL, 's'}, @@ -79,7 +78,7 @@ main(int argc, char *argv[]) handle_help_version_opts(argc, argv, "createuser", help); - while ((c = getopt_long(argc, argv, "h:p:U:wWeqdDsSaArRiIlLc:PEN", + while ((c = getopt_long(argc, argv, "h:p:U:wWedDsSaArRiIlLc:PEN", long_options, &optindex)) != -1) { switch (c) @@ -102,9 +101,6 @@ main(int argc, char *argv[]) case 'e': echo = true; break; - case 'q': - /* obsolete; remove in 8.4 */ - break; case 'd': createdb = TRI_YES; break; |
