diff options
author | vva@eagle.mysql.r18.ru <> | 2003-07-16 18:15:35 -0400 |
---|---|---|
committer | vva@eagle.mysql.r18.ru <> | 2003-07-16 18:15:35 -0400 |
commit | ac08d278b9fb895b6680d9090456ef5851f63d54 (patch) | |
tree | e9727a34673073728aa72d4f7035e5452c39308e /client | |
parent | ca8831e1ad37c4e5f6b3e183873b7a33b6726544 (diff) | |
download | mariadb-git-ac08d278b9fb895b6680d9090456ef5851f63d54.tar.gz |
fixed bug Bug #683 (Prompt for password doesn't go to console for Windows)
Diffstat (limited to 'client')
-rw-r--r-- | client/get_password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/get_password.c b/client/get_password.c index 9928d24de32..5d78656ab0a 100644 --- a/client/get_password.c +++ b/client/get_password.c @@ -71,7 +71,7 @@ char *get_tty_password(char *opt_message) char *pos=to,*end=to+sizeof(to)-1; int i=0; DBUG_ENTER("get_tty_password"); - fprintf(stderr,opt_message ? opt_message : "Enter password: "); + _cputs(opt_message ? opt_message : "Enter password: "); for (;;) { char tmp; |