Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-08-06 13:42:00+02:00, msvensson@shellback.(none) +1 -0
Add missing '
Extend buffer size to allow for longer log messages
client/mysqltest.c@stripped, 2007-08-06 13:41:55+02:00, msvensson@shellback.(none) +2 -2
Add missing '
Extend buffer size to allow for longer log messages
diff -Nrup a/client/mysqltest.c b/client/mysqltest.c
--- a/client/mysqltest.c 2007-08-06 11:20:33 +02:00
+++ b/client/mysqltest.c 2007-08-06 13:41:55 +02:00
@@ -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);
}
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.2504) | msvensson | 6 Aug |