Commit 52f3366b authored by unknown's avatar unknown

Fix for build failure


libmysql/get_password.c:
  fix for build failure (no bool in C)
parent 550b2ee4
...@@ -118,7 +118,7 @@ char *get_tty_password(const char *opt_message) ...@@ -118,7 +118,7 @@ char *get_tty_password(const char *opt_message)
to will not include the eol characters. 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; 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