Browse Source

[1627] (editorial) folded long lines

JINMEI Tatuya 13 years ago
parent
commit
77eddb37c5
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/lib/dns/name.cc

+ 4 - 2
src/lib/dns/name.cc

@@ -244,7 +244,8 @@ Name::Name(const std::string &namestring, bool downcase) {
         case ft_escdecimal:
             if (!isdigit(c & 0xff)) {
                 isc_throw(BadEscape,
-                          "mixture of escaped digit and non-digit in " << namestring);
+                          "mixture of escaped digit and non-digit in "
+                          << namestring);
             }
             value *= 10;
             value += digitvalue[c];
@@ -252,7 +253,8 @@ Name::Name(const std::string &namestring, bool downcase) {
             if (digits == 3) {
                 if (value > 255) {
                     isc_throw(BadEscape,
-                              "escaped decimal is too large in " << namestring);
+                              "escaped decimal is too large in "
+                              << namestring);
                 }
                 if (++count > MAX_LABELLEN) {
                     isc_throw(TooLongLabel,