Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4c4f1ebb
Commit
4c4f1ebb
authored
Feb 19, 2008
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for build failure
libmysql/get_password.c: fix for build failure (no bool in C)
parent
8665ae2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libmysql/get_password.c
libmysql/get_password.c
+1
-1
No files found.
libmysql/get_password.c
View file @
4c4f1ebb
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment