diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2003-09-02 12:09:27 -0400 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2003-09-02 12:09:27 -0400 |
commit | d63ce665c7dc2e0308950267eee7059c7f1b3ce5 (patch) | |
tree | afd877fe1ab702a382c2f57aa41bcec6ec3dcf66 | |
parent | f8b8ae8a169be8177c22e0ac930c13fd7e3ea595 (diff) | |
download | mariadb-git-d63ce665c7dc2e0308950267eee7059c7f1b3ce5.tar.gz |
fixed bug #1174
-rw-r--r-- | libmysql/get_password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/get_password.c b/libmysql/get_password.c index e6221ea556e..0e3b2dcb0ae 100644 --- a/libmysql/get_password.c +++ b/libmysql/get_password.c @@ -78,7 +78,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(stdout,opt_message ? opt_message : "Enter password: "); + _cputs(opt_message ? opt_message : "Enter password: "); for (;;) { char tmp; |