1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Final removal of -q options, which haven't done anything since 8.3 and

were marked for removal in 8.4.
This commit is contained in:
Peter Eisentraut
2009-02-26 16:20:55 +00:00
parent 9de59fd191
commit 257c4ff160
4 changed files with 8 additions and 24 deletions

View File

@ -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/createuser.c,v 1.42 2009/02/26 16:02:39 petere Exp $
* $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.43 2009/02/26 16:20:55 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -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;