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, 2006-10-24 13:52:50+02:00, msvensson@neptunus.(none) +1 -0
Use same type for local variables as arguments, avoid compile error on NetWare
client/mysqldump.c@stripped, 2006-10-24 13:52:45+02:00, msvensson@neptunus.(none) +2 -2
Use same type for local variables as arguments, avoid compile error on NetWare
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: neptunus.(none)
# Root: /home/msvensson/mysql/mysql-5.0-maint
--- 1.247/client/mysqldump.c 2006-10-24 13:53:01 +02:00
+++ 1.248/client/mysqldump.c 2006-10-24 13:53:01 +02:00
@@ -1195,7 +1195,7 @@
const char* first_attribute_name, ...)
{
va_list arg_list;
- char *attribute_name, *attribute_value;
+ const char *attribute_name, *attribute_value;
fputs(sbeg, xml_file);
fputc('<', xml_file);
@@ -1318,7 +1318,7 @@
static void print_blob_as_hex(FILE *output_file, const char *str, ulong len)
{
/* sakaik got the idea to to provide blob's in hex notation. */
- char *ptr= str, *end= ptr + len;
+ const char *ptr= str, *end= ptr + len;
for (; ptr < end ; ptr++)
fprintf(output_file, "%02X", *((uchar *)ptr));
check_io(output_file);
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.2331) | msvensson | 24 Oct |