Browse Source

[3899] Reindented

Francis Dupont 9 years ago
parent
commit
2ef34b3f04
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/lib/dhcp/option6_iaprefix.cc

+ 3 - 3
src/lib/dhcp/option6_iaprefix.cc

@@ -39,9 +39,9 @@ Option6IAPrefix::Option6IAPrefix(uint16_t type, const isc::asiolink::IOAddress&
     setEncapsulatedSpace("dhcp6");
     // Option6IAAddr will check if prefix is IPv6 and will throw if it is not
     if (prefix_len > 128) {
-      isc_throw(BadValue, static_cast<unsigned>(prefix_len)
-                << " is not a valid prefix length. "
-                << "Allowed range is 0..128");
+        isc_throw(BadValue, static_cast<unsigned>(prefix_len)
+                  << " is not a valid prefix length. "
+                  << "Allowed range is 0..128");
     }
 }