BIND 10 trac1060, updated. 8907c6a5c71816483099683e0ddcaf11cf3a7912 [trac1060] corrected a variable name to make it compile
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Jul 28 12:00:04 UTC 2011
The branch, trac1060 has been updated
via 8907c6a5c71816483099683e0ddcaf11cf3a7912 (commit)
from 0d2c284222839ff21401cecb7cb567cb0cc04127 (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 8907c6a5c71816483099683e0ddcaf11cf3a7912
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Jul 28 07:59:29 2011 -0400
[trac1060] corrected a variable name to make it compile
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/command.cc | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/command.cc b/src/bin/auth/command.cc
index 0944005..940d57b 100644
--- a/src/bin/auth/command.cc
+++ b/src/bin/auth/command.cc
@@ -139,10 +139,10 @@ public:
shared_ptr<InMemoryZoneFinder> zone_finder(
new InMemoryZoneFinder(old_zone_finder->getClass(),
old_zone_finder->getOrigin()));
- newzone->load(old_zone_finder->getFileName());
- old_zone_finder->swap(*newzone);
+ zone_finder->load(old_zone_finder->getFileName());
+ old_zone_finder->swap(*zone_finder);
LOG_DEBUG(auth_logger, DBG_AUTH_OPS, AUTH_LOAD_ZONE)
- .arg(newzone->getOrigin()).arg(newzone->getClass());
+ .arg(zone_finder->getOrigin()).arg(zone_finder->getClass());
}
private:
More information about the bind10-changes
mailing list