Commit 4c4f1ebb authored by unknown's avatar unknown

Fix for build failure


libmysql/get_password.c:
  fix for build failure (no bool in C)
parent 8665ae2c
......@@ -118,7 +118,7 @@ char *get_tty_password(const char *opt_message)
to will not include the eol characters.
*/
static void get_password(char *to,uint length,int fd,bool echo)
static void get_password(char *to,uint length,int fd, my_bool echo)
{
char *pos=to,*end=to+length;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment