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

Fixed a bug in mysqldump.

parent 144b790f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
** 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_sys.h>
@@ -1238,7 +1238,7 @@ static void print_quoted_xml(FILE *output, char *fname, char *str, uint len)
    else
      fputc(*str, output);
  }
  fprintf(output, "<%s>\n", fname);
  fprintf(output, "</%s>\n", fname);
}

static char *getTableName(int reset)