Merge lp:~bkerensa/mydumper/fix-for-893908 into lp:mydumper/0.5

Proposed by Benjamin Kerensa
Status: Needs review
Proposed branch: lp:~bkerensa/mydumper/fix-for-893908
Merge into: lp:mydumper/0.5
Diff against target: 21 lines (+2/-2)
1 file modified
myloader.c (+2/-2)
To merge this branch: bzr merge lp:~bkerensa/mydumper/fix-for-893908
Reviewer Review Type Date Requested Status
MySQL Data Dumper Team Pending
Review via email: mp+98948@code.launchpad.net

Commit message

Fixed Typo String LP: #893908

To post a comment you must log in.

Unmerged revisions

105. By Benjamin Kerensa

Fixed typo in myloader.c string

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'myloader.c'
2--- myloader.c 2011-06-19 13:35:52 +0000
3+++ myloader.c 2012-03-23 00:37:23 +0000
4@@ -368,7 +368,7 @@
5 if (!is_schema &&(query_counter == commit_count)) {
6 query_counter= 0;
7 if (mysql_query(conn, "COMMIT")) {
8- g_critical("Error commiting data for %s.%s: %s", db ? db : database, table, mysql_error(conn));
9+ g_critical("Error committing data for %s.%s: %s", db ? db : database, table, mysql_error(conn));
10 errors++;
11 return;
12 }
13@@ -384,7 +384,7 @@
14 }
15 }
16 if (!is_schema && mysql_query(conn, "COMMIT")) {
17- g_critical("Error commiting data for %s.%s from file %s: %s", db ? db : database, table, filename, mysql_error(conn));
18+ g_critical("Error committing data for %s.%s from file %s: %s", db ? db : database, table, filename, mysql_error(conn));
19 errors++;
20 }
21 g_string_free(data, TRUE);

Subscribers

People subscribed via source and target branches