From c4251a7b216beea6bdd92d42717aa865a8d168ca Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 8 May 2002 03:16:58 -0600 Subject: [PATCH] Tiny fix to make the XML generated by the client well-formed. (Thanks to Georg Richter!) client/mysqldump.c: Made closing XML tag well-formed BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted --- BitKeeper/etc/logging_ok | 1 + client/mysqldump.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index c8e47d03d15..2351956b1e5 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -19,3 +19,4 @@ sinisa@rhols221.adsl.netsonic.fi Sinisa@sinisa.nasamreza.org nick@nick.leippe.com monty@tik. +zak@balfor.local diff --git a/client/mysqldump.c b/client/mysqldump.c index ba434237580..d7d54a13c57 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -1246,7 +1246,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, "\n", fname); } static char *getTableName(int reset)