BIND 10 master, updated. c5124556a1a8907a84bb2c2bd1912da0c0aaafcc [master] a cleanup fix: missing boost namespace prefix reviewed on jabber room
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Aug 3 11:31:01 UTC 2011
The branch, master has been updated
via c5124556a1a8907a84bb2c2bd1912da0c0aaafcc (commit)
from da32354d05eb22cecdf9543f542636d44e503a20 (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 c5124556a1a8907a84bb2c2bd1912da0c0aaafcc
Author: chenzhengzhang <jerry.zzpku at gmail.com>
Date: Wed Aug 3 19:18:48 2011 +0800
[master] a cleanup fix: missing boost namespace prefix
reviewed on jabber room
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/rdata/in_1/srv_33.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/rdata/in_1/srv_33.cc b/src/lib/dns/rdata/in_1/srv_33.cc
index ea85779..c28c435 100644
--- a/src/lib/dns/rdata/in_1/srv_33.cc
+++ b/src/lib/dns/rdata/in_1/srv_33.cc
@@ -64,7 +64,7 @@ NumType
tokenToNum(const string& num_token) {
NumType num;
try {
- num = lexical_cast<NumType>(num_token);
+ num = boost::lexical_cast<NumType>(num_token);
} catch (const boost::bad_lexical_cast& ex) {
isc_throw(InvalidRdataText, "Invalid SRV numeric parameter: " <<
num_token);
More information about the bind10-changes
mailing list