summaryrefslogtreecommitdiff
path: root/sql/protocol.cc
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2005-02-26 12:19:02 +0200
committerunknown <monty@mysql.com>2005-02-26 12:19:02 +0200
commit25e03cdf7133dd718b18f00ba2cef73b2d0314f1 (patch)
tree36ce4a3aa07e9ef223c20d491e69f5cebbf2d63b /sql/protocol.cc
parent0be32e7e5a03be486c49dab46c2630c89a6e99f4 (diff)
downloadmariadb-git-25e03cdf7133dd718b18f00ba2cef73b2d0314f1.tar.gz
Fixes while during review of last pull
Temporary patch to remove some warnings sql/item.cc: Trivial optimization sql/protocol.cc: Fixed spelling error sql/sql_parse.cc: Fix to not get warnings during inital temp open (should be deleted after Dimitri's next push) Style fixes sql/table.cc: Ensure that cleanup is done, even if we get an error
Diffstat (limited to 'sql/protocol.cc')
-rw-r--r--sql/protocol.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/protocol.cc b/sql/protocol.cc
index 81444500421..a05f4c6079b 100644
--- a/sql/protocol.cc
+++ b/sql/protocol.cc
@@ -326,7 +326,7 @@ send_ok(THD *thd, ha_rows affected_rows, ulonglong id, const char *message)
/* We can't anymore send an error to the client */
thd->net.report_error= 0;
thd->net.no_send_error= 1;
- DBUG_PRINT("info", ("OK sent, so no more error sendong allowed"));
+ DBUG_PRINT("info", ("OK sent, so no more error sending allowed"));
DBUG_VOID_RETURN;
}
@@ -388,7 +388,7 @@ send_eof(THD *thd, bool no_flush)
VOID(net_flush(net));
}
thd->net.no_send_error= 1;
- DBUG_PRINT("info", ("EOF sent, so no more error sendong allowed"));
+ DBUG_PRINT("info", ("EOF sent, so no more error sending allowed"));
}
DBUG_VOID_RETURN;
}