summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorJoerg Bruehe <joerg.bruehe@oracle.com>2012-03-02 13:23:52 +0100
committerJoerg Bruehe <joerg.bruehe@oracle.com>2012-03-02 13:23:52 +0100
commita9f3b2f5703e477bd60a1d917ff9e108470b7503 (patch)
treed5f9b580b8298c368c983d1fe6510f2c0da959bd /client
parentf8a26bab5f37fb3fae4c80a93d6ba7c46e20fc28 (diff)
parent3aa13d8ca123f3a900acce00ae113ff7660373a7 (diff)
downloadmariadb-git-a9f3b2f5703e477bd60a1d917ff9e108470b7503.tar.gz
Further upmerge the yaSSL upgrade (to 2.2.0) from MySQL 5.1 to 5.5.
Also, take a syntax fix (C++ style comment in C file) in client/mysqldump.c.
Diffstat (limited to 'client')
-rw-r--r--client/mysqldump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c
index 5773d61082a..cdda4f7a61d 100644
--- a/client/mysqldump.c
+++ b/client/mysqldump.c
@@ -2315,10 +2315,10 @@ static uint dump_routines_for_db(char *db)
{
if (opt_xml)
{
- if (i) // Procedures.
+ if (i) /* Procedures. */
print_xml_row(sql_file, "routine", routine_res, &row,
"Create Procedure");
- else // Functions.
+ else /* Functions. */
print_xml_row(sql_file, "routine", routine_res, &row,
"Create Function");
continue;