Commit 45de80e5 authored by jani@hynda.mysql.fi's avatar jani@hynda.mysql.fi

Fixed a bug in mysqldump.

parent 144b790f
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
** and adapted to mysqldump 05/11/01 by Jani Tolonen ** and adapted to mysqldump 05/11/01 by Jani Tolonen
*/ */
#define DUMP_VERSION "8.23" #define DUMP_VERSION "8.24"
#include <my_global.h> #include <my_global.h>
#include <my_sys.h> #include <my_sys.h>
...@@ -1238,7 +1238,7 @@ static void print_quoted_xml(FILE *output, char *fname, char *str, uint len) ...@@ -1238,7 +1238,7 @@ static void print_quoted_xml(FILE *output, char *fname, char *str, uint len)
else else
fputc(*str, output); fputc(*str, output);
} }
fprintf(output, "<%s>\n", fname); fprintf(output, "</%s>\n", fname);
} }
static char *getTableName(int reset) static char *getTableName(int reset)
......
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