mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
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
This commit is contained in:
parent
daafa8db50
commit
c4251a7b21
2 changed files with 2 additions and 1 deletions
|
@ -19,3 +19,4 @@ sinisa@rhols221.adsl.netsonic.fi
|
|||
Sinisa@sinisa.nasamreza.org
|
||||
nick@nick.leippe.com
|
||||
monty@tik.
|
||||
zak@balfor.local
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue