]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3919] moved local variables in their block
authorFrancis Dupont <fdupont@isc.org>
Wed, 24 Jun 2015 10:53:26 +0000 (12:53 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 24 Jun 2015 10:53:26 +0000 (12:53 +0200)
src/bin/dhcp6/json_config_parser.cc

index 9c5143fea24d3e42d43cf06156a62f6b535cbdab..3f3f45a60aa510c2c10daf7a811d3f6cbed75513 100644 (file)
@@ -194,13 +194,10 @@ public:
 
         // Try to obtain the pool parameters. It will throw an exception if any
         // of the required parameters are not present or invalid.
-        std::string addr_str;
-        uint32_t prefix_len;
-        uint32_t delegated_len;
         try {
-            addr_str = string_values_->getParam("prefix");
-            prefix_len = uint32_values_->getParam("prefix-len");
-            delegated_len = uint32_values_->getParam("delegated-len");
+            std::string addr_str = string_values_->getParam("prefix");
+            uint32_t prefix_len = uint32_values_->getParam("prefix-len");
+            uint32_t delegated_len = uint32_values_->getParam("delegated-len");
 
             // Attempt to construct the local pool.
             pool_.reset(new Pool6(Lease::TYPE_PD, IOAddress(addr_str),