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
3fe6684c
Commit
3fe6684c
authored
Feb 19, 2008
by
guilhem@gbichot4.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for build failures due to my yesterday's changeset forbidding
bool in C.
parent
045f3c4a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
client/get_password.c
client/get_password.c
+1
-1
include/thr_alarm.h
include/thr_alarm.h
+1
-1
libmysql/dll.c
libmysql/dll.c
+1
-1
libmysql/get_password.c
libmysql/get_password.c
+1
-1
mysys/thr_alarm.c
mysys/thr_alarm.c
+1
-1
No files found.
client/get_password.c
View file @
3fe6684c
...
...
@@ -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
;
...
...
include/thr_alarm.h
View file @
3fe6684c
...
...
@@ -98,7 +98,7 @@ void thr_end_alarm(thr_alarm_t *alarmed);
void
end_thr_alarm
(
my_bool
free_structures
);
sig_handler
process_alarm
(
int
);
#ifndef thr_got_alarm
bool
thr_got_alarm
(
thr_alarm_t
*
alrm
);
my_
bool
thr_got_alarm
(
thr_alarm_t
*
alrm
);
#endif
...
...
libmysql/dll.c
View file @
3fe6684c
...
...
@@ -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
)
{
...
...
libmysql/get_password.c
View file @
3fe6684c
...
...
@@ -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
;
...
...
mysys/thr_alarm.c
View file @
3fe6684c
...
...
@@ -632,7 +632,7 @@ my_bool thr_alarm(thr_alarm_t *alrm, uint sec, ALARM *alarm)
}
bool
thr_got_alarm
(
thr_alarm_t
*
alrm_ptr
)
my_
bool
thr_got_alarm
(
thr_alarm_t
*
alrm_ptr
)
{
thr_alarm_t
alrm
=
*
alrm_ptr
;
MSG
msg
;
...
...
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