aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts/createuser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/scripts/createuser.c')
-rw-r--r--src/bin/scripts/createuser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/scripts/createuser.c b/src/bin/scripts/createuser.c
index e58952977dc..864a0ddbe9a 100644
--- a/src/bin/scripts/createuser.c
+++ b/src/bin/scripts/createuser.c
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Header: /cvsroot/pgsql/src/bin/scripts/createuser.c,v 1.2 2003/05/14 03:26:03 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/scripts/createuser.c,v 1.3 2003/05/27 19:36:54 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -166,7 +166,7 @@ main(int argc, char *argv[])
char *reply;
reply = simple_prompt("Shall the new user be allowed to create databases? (y/n) ", 1, true);
- if (reply[0] == 'y' || reply[0] == 'Y')
+ if (check_yesno_response(reply) == 1)
createdb = +1;
else
createdb = -1;
@@ -177,7 +177,7 @@ main(int argc, char *argv[])
char *reply;
reply = simple_prompt("Shall the new user be allowed to create more new users? (y/n) ", 1, true);
- if (reply[0] == 'y' || reply[0] == 'Y')
+ if (check_yesno_response(reply) == 1)
adduser = +1;
else
adduser = -1;