diff options
author | unknown <jorge@linux.jorge.mysql.com> | 2002-02-12 08:24:40 -0600 |
---|---|---|
committer | unknown <jorge@linux.jorge.mysql.com> | 2002-02-12 08:24:40 -0600 |
commit | 700513a41a06b504a24020ab9e5216450f01e01f (patch) | |
tree | eb03d1a8dac9729aa3154aeb4ac460a665c14462 | |
parent | 501650c5b16a4c7cf7b673b19f9a2ae9c319e24f (diff) | |
download | mariadb-git-700513a41a06b504a24020ab9e5216450f01e01f.tar.gz |
mysqldump.c:
Changed C++ style comments to ANSI C style.
client/mysqldump.c:
Changed C++ style comments to ANSI C style.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
-rw-r--r-- | BitKeeper/etc/logging_ok | 1 | ||||
-rw-r--r-- | client/mysqldump.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index e9dc3e56d39..58c1d7f91eb 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -9,3 +9,4 @@ miguel@light.local monty@donna.mysql.fi monty@bitch.mysql.fi mwagner@cash.mwagner.org +jorge@linux.jorge.mysql.com diff --git a/client/mysqldump.c b/client/mysqldump.c index 8020fa58304..b1d3195eba9 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -1192,7 +1192,7 @@ static void dumpTable(uint numFields, char *table) fputs(");\n", md_result_file); } - //XML - close table tag and supress regular output + /*XML - close table tag and supress regular output*/ if (opt_xml) fprintf(md_result_file, "\t</%s>\n", table); else if (extended_insert && row_break) @@ -1295,7 +1295,7 @@ static int dump_databases(char **db_names) int result=0; for ( ; *db_names ; db_names++) { - //XML edit - add database element + /*XML edit - add database element*/ if (opt_xml) fprintf(md_result_file, "<%s>\n", *db_names); if (dump_all_tables_in_db(*db_names)) |