BIND 10 trac2377, updated. 44f835de6b8c19c7b6ffe755d956d24da061559e [2377] constify
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Dec 7 04:09:30 UTC 2012
The branch, trac2377 has been updated
via 44f835de6b8c19c7b6ffe755d956d24da061559e (commit)
from 2f3467a4eaeea16afe3119ab6f6628ed1a7f941a (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 44f835de6b8c19c7b6ffe755d956d24da061559e
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Dec 6 20:09:25 2012 -0800
[2377] constify
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/master_loader.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/master_loader.cc b/src/lib/dns/master_loader.cc
index 3bda359..581640b 100644
--- a/src/lib/dns/master_loader.cc
+++ b/src/lib/dns/master_loader.cc
@@ -190,7 +190,7 @@ MasterLoader::~MasterLoader() {
bool
MasterLoader::loadIncremental(size_t count_limit) {
- bool result = impl_->loadIncremental(count_limit);
+ const bool result = impl_->loadIncremental(count_limit);
impl_->complete_ = result;
return (result);
}
More information about the bind10-changes
mailing list