summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorunknown <zak@balfor.local>2002-05-08 03:16:58 -0600
committerunknown <zak@balfor.local>2002-05-08 03:16:58 -0600
commitc4251a7b216beea6bdd92d42717aa865a8d168ca (patch)
tree76a091f45dc96c3872501c3c93df10ea50139765 /client
parentdaafa8db5049da5a8e3c51edb7cb5b7f36dbc73f (diff)
downloadmariadb-git-c4251a7b216beea6bdd92d42717aa865a8d168ca.tar.gz
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
Diffstat (limited to 'client')
-rw-r--r--client/mysqldump.c2
1 files changed, 1 insertions, 1 deletions
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, "</%s>\n", fname);
}
static char *getTableName(int reset)