1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Tiny fix to make the XML generated by the client well-formed.

(Thanks to Georg Richter!)
This commit is contained in:
zak@balfor.local
2002-05-08 03:16:58 -06:00
parent d025029de4
commit 1405433568
2 changed files with 2 additions and 1 deletions

View File

@@ -19,3 +19,4 @@ sinisa@rhols221.adsl.netsonic.fi
Sinisa@sinisa.nasamreza.org Sinisa@sinisa.nasamreza.org
nick@nick.leippe.com nick@nick.leippe.com
monty@tik. monty@tik.
zak@balfor.local

View File

@@ -1246,7 +1246,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)