diff options
author | unknown <kostja@dipika.(none)> | 2008-02-19 15:45:21 +0300 |
---|---|---|
committer | unknown <kostja@dipika.(none)> | 2008-02-19 15:45:21 +0300 |
commit | 14021c96c464406812f84bec45c5f73ac0b96e1a (patch) | |
tree | 2135e26bf3867a57e788b8bfa932c8f511ce53b4 /sql/repl_failsafe.cc | |
parent | ead02981eae47130fe5d205a11336b3c00225be1 (diff) | |
download | mariadb-git-14021c96c464406812f84bec45c5f73ac0b96e1a.tar.gz |
Rename send_ok to my_ok. Similarly to my_error, it only records the status,
does not send it to the client.
Diffstat (limited to 'sql/repl_failsafe.cc')
-rw-r--r-- | sql/repl_failsafe.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/repl_failsafe.cc b/sql/repl_failsafe.cc index 589ee8b2605..6f4b4b2571d 100644 --- a/sql/repl_failsafe.cc +++ b/sql/repl_failsafe.cc @@ -1011,7 +1011,7 @@ err: mysql_close(&mysql); // safe to call since we always do mysql_init() if (!error) - send_ok(thd); + my_ok(thd); return error; } |