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/slave.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/slave.cc')
-rw-r--r-- | sql/slave.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index ea0dde942da..d9dc014b025 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -1451,7 +1451,7 @@ bool show_master_info(THD* thd, Master_info* mi) if (my_net_write(&thd->net, (uchar*) thd->packet.ptr(), packet->length())) DBUG_RETURN(TRUE); } - send_eof(thd); + my_eof(thd); DBUG_RETURN(FALSE); } |