diff options
author | kostja@dipika.(none) <> | 2008-02-19 15:58:08 +0300 |
---|---|---|
committer | kostja@dipika.(none) <> | 2008-02-19 15:58:08 +0300 |
commit | 72495c968bdaad67c2ca71e358618b1569aad839 (patch) | |
tree | 45b55936ae81907c642d157ea0b087892228e8a1 /sql/sql_repl.cc | |
parent | f106d9738a9c7eebf5319df55683aa5b3b9fdf21 (diff) | |
download | mariadb-git-72495c968bdaad67c2ca71e358618b1569aad839.tar.gz |
Rename send_eof() to my_eof() for consistency with my_ok() and my_error()
Diffstat (limited to 'sql/sql_repl.cc')
-rw-r--r-- | sql/sql_repl.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc index 573a257cd3d..932b7a67b4d 100644 --- a/sql/sql_repl.cc +++ b/sql/sql_repl.cc @@ -738,7 +738,7 @@ end: end_io_cache(&log); (void)my_close(file, MYF(MY_WME)); - send_eof(thd); + my_eof(thd); thd_proc_info(thd, "Waiting to finalize termination"); pthread_mutex_lock(&LOCK_thread_count); thd->current_linfo = 0; @@ -1453,7 +1453,7 @@ err: my_error(ER_ERROR_WHEN_EXECUTING_COMMAND, MYF(0), "SHOW BINLOG EVENTS", errmsg); else - send_eof(thd); + my_eof(thd); pthread_mutex_lock(&LOCK_thread_count); thd->current_linfo = 0; @@ -1490,7 +1490,7 @@ bool show_binlog_info(THD* thd) if (protocol->write()) DBUG_RETURN(TRUE); } - send_eof(thd); + my_eof(thd); DBUG_RETURN(FALSE); } @@ -1572,7 +1572,7 @@ bool show_binlogs(THD* thd) goto err; } mysql_bin_log.unlock_index(); - send_eof(thd); + my_eof(thd); DBUG_RETURN(FALSE); err: |