BIND 10 trac3160, updated. 13232d6dc5d5f4dd6ec79d8a268098bacc90d675 [3160] Log text representation of the IOEndpoint
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Sep 13 05:16:10 UTC 2013
The branch, trac3160 has been updated
via 13232d6dc5d5f4dd6ec79d8a268098bacc90d675 (commit)
from bd87ddb34aef27f3cc0620e1ddecd9093a360f08 (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 13232d6dc5d5f4dd6ec79d8a268098bacc90d675
Author: Mukund Sivaraman <muks at isc.org>
Date: Fri Sep 13 10:45:03 2013 +0530
[3160] Log text representation of the IOEndpoint
This is to workaround a compiler issue between SunStudio and
boost::lexical_cast, which tries to construct a copy of the passed arg.
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/auth_srv.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/auth_srv.cc b/src/bin/auth/auth_srv.cc
index ce5c02b..15b0ae8 100644
--- a/src/bin/auth/auth_srv.cc
+++ b/src/bin/auth/auth_srv.cc
@@ -196,7 +196,7 @@ public:
io_message.getData(), io_message.getDataSize());
} catch (const SocketSessionError& ex) {
LOG_ERROR(auth_logger, AUTH_MESSAGE_FORWARD_ERROR).
- arg(message_name_).arg(remote_ep).arg(ex.what());
+ arg(message_name_).arg(remote_ep.toText()).arg(ex.what());
close();
throw;
}
More information about the bind10-changes
mailing list