diff options
author | unknown <guilhem@gbichot4.local> | 2008-02-19 18:45:11 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot4.local> | 2008-02-19 18:45:11 +0100 |
commit | 205d448b01b93e3aa10507e933337b51e885f9dd (patch) | |
tree | ad9d397d605c9c610e9016051ee4cc0e7fad479e /libmysql | |
parent | ae25da10a371db0d530ccc2225a730ebc38f8db1 (diff) | |
download | mariadb-git-205d448b01b93e3aa10507e933337b51e885f9dd.tar.gz |
fixes for build failures due to my yesterday's changeset forbidding
bool in C.
client/get_password.c:
fix for build failure
include/thr_alarm.h:
fix for build failure
libmysql/dll.c:
fix for build failure
libmysql/get_password.c:
fix for build failure
mysys/thr_alarm.c:
fix for build failure
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/dll.c | 2 | ||||
-rw-r--r-- | libmysql/get_password.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libmysql/dll.c b/libmysql/dll.c index f5db0bb4669..7aa3b5bf96f 100644 --- a/libmysql/dll.c +++ b/libmysql/dll.c @@ -25,7 +25,7 @@ #include <my_sys.h> #include <my_pthread.h> -static bool libmysql_inited=0; +static my_bool libmysql_inited=0; void libmysql_init(void) { 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; |