diff options
author | Peter Eisentraut | 2003-05-27 19:36:55 +0000 |
---|---|---|
committer | Peter Eisentraut | 2003-05-27 19:36:55 +0000 |
commit | a6f01d1aa684ef6aa0972a11648a7725a309c471 (patch) | |
tree | 5ccec8ff9df7a77906571c279cd2756b2065ecce /src/bin/scripts/dropuser.c | |
parent | aea0270c23c873d0086a16b9b12b8e35ed7145c3 (diff) |
Internationalize interactive yes/no responses.
Diffstat (limited to 'src/bin/scripts/dropuser.c')
-rw-r--r-- | src/bin/scripts/dropuser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/scripts/dropuser.c b/src/bin/scripts/dropuser.c index 6bc6359cd73..db340050a8d 100644 --- a/src/bin/scripts/dropuser.c +++ b/src/bin/scripts/dropuser.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/dropuser.c,v 1.2 2003/05/14 03:26:03 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/scripts/dropuser.c,v 1.3 2003/05/27 19:36:55 petere Exp $ * *------------------------------------------------------------------------- */ @@ -108,7 +108,7 @@ main(int argc, char *argv[]) printf(_("User \"%s\" will be permanently deleted.\n"), dropuser); reply = simple_prompt("Are you sure? (y/n) ", 1, true); - if (reply[0] != 'y' && reply[0] != 'Y') + if (check_yesno_response(reply) != 1) exit(0); } |