Add missing '

Extend buffer size to allow for longer log messages
parent b8a21616
...@@ -1006,7 +1006,7 @@ void warning_msg(const char *fmt, ...) ...@@ -1006,7 +1006,7 @@ void warning_msg(const char *fmt, ...)
void log_msg(const char *fmt, ...) void log_msg(const char *fmt, ...)
{ {
va_list args; va_list args;
char buff[512]; char buff[1024];
size_t len; size_t len;
DBUG_ENTER("log_msg"); DBUG_ENTER("log_msg");
...@@ -2269,7 +2269,7 @@ void do_exec(struct st_command *command) ...@@ -2269,7 +2269,7 @@ void do_exec(struct st_command *command)
if (command->abort_on_error) 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); ds_cmd.str, error, status, errno);
die("command \"%s\" failed", command->first_argument); die("command \"%s\" failed", command->first_argument);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment