summaryrefslogtreecommitdiff
path: root/sql/protocol.cc
diff options
context:
space:
mode:
authormonty@mysql.com <>2005-02-26 12:19:02 +0200
committermonty@mysql.com <>2005-02-26 12:19:02 +0200
commit1ecb8c8fedc2b2e8d2947edbf75fcbc9c4cf2029 (patch)
tree36ce4a3aa07e9ef223c20d491e69f5cebbf2d63b /sql/protocol.cc
parentf949f6a91563f118ff86d17cf8a7b57d86b78f71 (diff)
downloadmariadb-git-1ecb8c8fedc2b2e8d2947edbf75fcbc9c4cf2029.tar.gz
Fixes while during review of last pull
Temporary patch to remove some warnings
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;
}