diff options
author | unknown <kostja@dipika.(none)> | 2008-02-19 15:58:08 +0300 |
---|---|---|
committer | unknown <kostja@dipika.(none)> | 2008-02-19 15:58:08 +0300 |
commit | 9060b50f144a6172742ff0089f9cfe36b433c11e (patch) | |
tree | 45b55936ae81907c642d157ea0b087892228e8a1 /sql/repl_failsafe.cc | |
parent | 14021c96c464406812f84bec45c5f73ac0b96e1a (diff) | |
download | mariadb-git-9060b50f144a6172742ff0089f9cfe36b433c11e.tar.gz |
Rename send_eof() to my_eof() for consistency with my_ok() and my_error()
Diffstat (limited to 'sql/repl_failsafe.cc')
-rw-r--r-- | sql/repl_failsafe.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/repl_failsafe.cc b/sql/repl_failsafe.cc index 6f4b4b2571d..f8f01d2cad1 100644 --- a/sql/repl_failsafe.cc +++ b/sql/repl_failsafe.cc @@ -475,7 +475,7 @@ bool show_new_master(THD* thd) protocol->store((ulonglong) lex_mi->pos); if (protocol->write()) DBUG_RETURN(TRUE); - send_eof(thd); + my_eof(thd); DBUG_RETURN(FALSE); } } @@ -688,7 +688,7 @@ bool show_slave_hosts(THD* thd) } } pthread_mutex_unlock(&LOCK_slave_list); - send_eof(thd); + my_eof(thd); DBUG_RETURN(FALSE); } |