mysqldump.c:

  Changed C++ style comments to ANSI C style.
parent 1efcc3e3
...@@ -9,3 +9,4 @@ miguel@light.local ...@@ -9,3 +9,4 @@ miguel@light.local
monty@donna.mysql.fi monty@donna.mysql.fi
monty@bitch.mysql.fi monty@bitch.mysql.fi
mwagner@cash.mwagner.org mwagner@cash.mwagner.org
jorge@linux.jorge.mysql.com
...@@ -1192,7 +1192,7 @@ static void dumpTable(uint numFields, char *table) ...@@ -1192,7 +1192,7 @@ static void dumpTable(uint numFields, char *table)
fputs(");\n", md_result_file); fputs(");\n", md_result_file);
} }
//XML - close table tag and supress regular output /*XML - close table tag and supress regular output*/
if (opt_xml) if (opt_xml)
fprintf(md_result_file, "\t</%s>\n", table); fprintf(md_result_file, "\t</%s>\n", table);
else if (extended_insert && row_break) else if (extended_insert && row_break)
...@@ -1295,7 +1295,7 @@ static int dump_databases(char **db_names) ...@@ -1295,7 +1295,7 @@ static int dump_databases(char **db_names)
int result=0; int result=0;
for ( ; *db_names ; db_names++) for ( ; *db_names ; db_names++)
{ {
//XML edit - add database element /*XML edit - add database element*/
if (opt_xml) if (opt_xml)
fprintf(md_result_file, "<%s>\n", *db_names); fprintf(md_result_file, "<%s>\n", *db_names);
if (dump_all_tables_in_db(*db_names)) if (dump_all_tables_in_db(*db_names))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment