BIND 10 master, updated. 64bba5b1c6a4155e8179217c10e998fbe3c2822c [master] Compilation fix for Solaris in LeaseMgr
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Oct 11 13:33:50 UTC 2012
The branch, master has been updated
via 64bba5b1c6a4155e8179217c10e998fbe3c2822c (commit)
from 7ad6e5687c4835d70422ee09d1bfdb032979060a (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 64bba5b1c6a4155e8179217c10e998fbe3c2822c
Author: Tomek Mrugalski <tomasz at isc.org>
Date: Thu Oct 11 15:33:40 2012 +0200
[master] Compilation fix for Solaris in LeaseMgr
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/lease_mgr.cc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/lease_mgr.cc b/src/lib/dhcp/lease_mgr.cc
index 927c328..9352c9b 100644
--- a/src/lib/dhcp/lease_mgr.cc
+++ b/src/lib/dhcp/lease_mgr.cc
@@ -54,7 +54,8 @@ LeaseMgr::LeaseMgr(const std::string& dbconfig) {
}
std::string LeaseMgr::getParameter(const std::string& name) const {
- map<string, string>::const_iterator param = parameters_.find(name);
+ std::map<std::string, std::string>::const_iterator param
+ = parameters_.find(name);
if (param == parameters_.end()) {
isc_throw(BadValue, "Parameter not found");
}
More information about the bind10-changes
mailing list