diff options
author | unknown <guilhem@gbichot4.local> | 2008-02-19 18:07:39 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot4.local> | 2008-02-19 18:07:39 +0100 |
commit | 4c4f1ebb43da311457c09848e7c67c9c5e6116bb (patch) | |
tree | eda9c99062f76ff440675151aad74b06cb6aca78 /libmysql/get_password.c | |
parent | 8665ae2c1fa97866978ebec938479c796c1de6d7 (diff) | |
download | mariadb-git-4c4f1ebb43da311457c09848e7c67c9c5e6116bb.tar.gz |
Fix for build failure
libmysql/get_password.c:
fix for build failure (no bool in C)
Diffstat (limited to 'libmysql/get_password.c')
-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 4c251677a66..cbe5fce6949 100644 --- a/libmysql/get_password.c +++ b/libmysql/get_password.c @@ -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; |