BIND 10 master, updated. 242cb68113bd4d2c0a3ea3b61cc56e143a42b38e [master] a trivial cleanup: remove unnecessary cast. the orignal code was not good in that - it used C-style cast - the cast wasn't necessary in the first place
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Mar 4 23:34:07 UTC 2011
The branch, master has been updated
via 242cb68113bd4d2c0a3ea3b61cc56e143a42b38e (commit)
via 3ffa099e0969468d0f16f00c503b8936b895a2d4 (commit)
via eeacd1d5adeb27ee536fb04296cc20ffa898cdab (commit)
via 33cf7e5a182bc98cd168928fa8b5c775581fe90a (commit)
via e55ec73b0bdcc2b7d6286c6a18886de194280947 (commit)
from 0ca10e6357d7a41bc308f90183848ce41582adf8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 242cb68113bd4d2c0a3ea3b61cc56e143a42b38e
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Mar 4 15:32:43 2011 -0800
[master] a trivial cleanup: remove unnecessary cast.
the orignal code was not good in that
- it used C-style cast
- the cast wasn't necessary in the first place
quite trivial, no behavior change, compile ok, so committing directly.
commit 3ffa099e0969468d0f16f00c503b8936b895a2d4
Merge: eeacd1d 0ca10e6
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Mar 4 14:32:16 2011 -0800
Merge branch 'master' of ssh://bind10.isc.org/var/bind10/git/bind10
commit eeacd1d5adeb27ee536fb04296cc20ffa898cdab
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Mar 3 16:52:46 2011 -0800
[master] Revert "[trac606] (blindly) imported basic framework of BIND 9 system tests"
It was merged to a different branch.
This reverts commit e55ec73b0bdcc2b7d6286c6a18886de194280947.
commit 33cf7e5a182bc98cd168928fa8b5c775581fe90a
Merge: 87829d2 e55ec73
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Mar 3 16:52:06 2011 -0800
Merge commit 'e55ec73b0bdcc2b7d6286c6a18886d'
-----------------------------------------------------------------------
Summary of changes:
src/lib/asiolink/tcp_server.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/asiolink/tcp_server.cc b/src/lib/asiolink/tcp_server.cc
index e77828c..4389677 100644
--- a/src/lib/asiolink/tcp_server.cc
+++ b/src/lib/asiolink/tcp_server.cc
@@ -110,7 +110,7 @@ TCPServer::operator()(error_code ec, size_t length) {
/// Now read the message itself. (This is done in a different scope
/// to allow inline variable declarations.)
CORO_YIELD {
- InputBuffer dnsbuffer((const void *) data_.get(), length);
+ InputBuffer dnsbuffer(data_.get(), length);
uint16_t msglen = dnsbuffer.readUint16();
async_read(*socket_, asio::buffer(data_.get(), msglen), *this);
}
More information about the bind10-changes
mailing list