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
260fabd4
Commit
260fabd4
authored
Aug 06, 2007
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing '
Extend buffer size to allow for longer log messages
parent
b8a21616
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client/mysqltest.c
client/mysqltest.c
+2
-2
No files found.
client/mysqltest.c
View file @
260fabd4
...
...
@@ -1006,7 +1006,7 @@ void warning_msg(const char *fmt, ...)
void
log_msg
(
const
char
*
fmt
,
...)
{
va_list
args
;
char
buff
[
512
];
char
buff
[
1024
];
size_t
len
;
DBUG_ENTER
(
"log_msg"
);
...
...
@@ -2269,7 +2269,7 @@ void do_exec(struct st_command *command)
if
(
command
->
abort_on_error
)
{
log_msg
(
"exec of '%s failed, error: %d, status: %d, errno: %d"
,
log_msg
(
"exec of '%s
'
failed, error: %d, status: %d, errno: %d"
,
ds_cmd
.
str
,
error
,
status
,
errno
);
die
(
"command
\"
%s
\"
failed"
,
command
->
first_argument
);
}
...
...
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