|
5 | 5 | * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group |
6 | 6 | * Portions Copyright (c) 1994, Regents of the University of California |
7 | 7 | * |
8 | | - * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.18 2005/08/14 20:16:03 tgl Exp $ |
| 8 | + * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.19 2005/09/30 07:13:54 petere Exp $ |
9 | 9 | * |
10 | 10 | *------------------------------------------------------------------------- |
11 | 11 | */ |
@@ -41,7 +41,7 @@ main(int argc, char *argv[]) |
41 | 41 | /* adduser is obsolete, undocumented spelling of superuser */ |
42 | 42 | {"adduser",no_argument,NULL,'a'}, |
43 | 43 | {"no-adduser",no_argument,NULL,'A'}, |
44 | | -{"conn-limit",required_argument,NULL,'c'}, |
| 44 | +{"connection-limit",required_argument,NULL,'c'}, |
45 | 45 | {"pwprompt",no_argument,NULL,'P'}, |
46 | 46 | {"encrypted",no_argument,NULL,'E'}, |
47 | 47 | {"unencrypted",no_argument,NULL,'N'}, |
@@ -315,7 +315,7 @@ help(const char *progname) |
315 | 315 | printf(_(" -i, --inherit role inherits permissions of roles\n")); |
316 | 316 | printf(_(" it is a member of (default)\n")); |
317 | 317 | printf(_(" -I, --no-inherit role does not inherit permissions\n")); |
318 | | -printf(_(" -c, --conn-limit=N max connections for role (default: no limit)\n")); |
| 318 | +printf(_(" -c, --connection-limit=Nconnection limit for role (default: no limit)\n")); |
319 | 319 | printf(_(" -P, --pwprompt assign a password to new role\n")); |
320 | 320 | printf(_(" -E, --encrypted encrypt stored password\n")); |
321 | 321 | printf(_(" -N, --unencrypted do not encrypt stored password\n")); |
|