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
298e5002
Commit
298e5002
authored
May 31, 2007
by
tsmith@quadxeon.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysqldump.c:
Fix harmless typo (caught thanks to warning)
parent
64f58239
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
client/mysqldump.c
client/mysqldump.c
+3
-3
No files found.
client/mysqldump.c
View file @
298e5002
...
...
@@ -3268,13 +3268,13 @@ static int do_unlock_tables(MYSQL *mysql_con)
return
mysql_query_with_error_report
(
mysql_con
,
0
,
"UNLOCK TABLES"
);
}
static
int
get_bin_log_name
(
MYSQL
*
mysql_con
,
char
*
buff_log_name
,
uint
buff_len
)
static
int
get_bin_log_name
(
MYSQL
*
mysql_con
,
char
*
buff_log_name
,
uint
buff_len
)
{
MYSQL_RES
*
res
;
MYSQL_ROW
row
;
if
(
mysql_query
(
mysql
,
"SHOW MASTER STATUS"
)
||
if
(
mysql_query
(
mysql
_con
,
"SHOW MASTER STATUS"
)
||
!
(
res
=
mysql_store_result
(
mysql
)))
return
1
;
...
...
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