summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorguilhem@gbichot4.local <>2008-02-19 18:45:11 +0100
committerguilhem@gbichot4.local <>2008-02-19 18:45:11 +0100
commit3fe6684c487e0a03d43666bff1a3813fef0562c5 (patch)
treead9d397d605c9c610e9016051ee4cc0e7fad479e /client
parent045f3c4a5d92dc0acd43db6c5248a69cb421cfcb (diff)
downloadmariadb-git-3fe6684c487e0a03d43666bff1a3813fef0562c5.tar.gz
fixes for build failures due to my yesterday's changeset forbidding
bool in C.
Diffstat (limited to 'client')
-rw-r--r--client/get_password.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/get_password.c b/client/get_password.c
index 37761d5bb5d..ea024f76fb6 100644
--- a/client/get_password.c
+++ b/client/get_password.c
@@ -107,7 +107,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;