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
3b4ec32d
Commit
3b4ec32d
authored
Apr 09, 2009
by
He Zhenxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile error on windows for BUG#37145 on 5.0-bugteam
parent
16e078f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
client/mysqltest.c
client/mysqltest.c
+2
-1
No files found.
client/mysqltest.c
View file @
3b4ec32d
...
...
@@ -4087,6 +4087,7 @@ int select_connection_name(const char *name)
int
select_connection
(
struct
st_command
*
command
)
{
int
ret
;
char
*
p
=
command
->
first_argument
;
static
DYNAMIC_STRING
ds_connection
;
const
struct
command_arg
connection_args
[]
=
{
...
...
@@ -4103,7 +4104,7 @@ int select_connection(struct st_command *command)
DBUG_PRINT
(
"info"
,
(
"changing connection: %s"
,
ds_connection
.
str
));
int
ret
=
select_connection_name
(
ds_connection
.
str
);
ret
=
select_connection_name
(
ds_connection
.
str
);
dynstr_free
(
&
ds_connection
);
return
ret
;
}
...
...
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