View | Details | Raw Unified | Return to bug 529
Collapse All | Expand All

(-)a/src/node/ipv6-address.cc (-1 / +2 lines)
 Lines 337-343    Link Here 
337
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[12]
337
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[12]
338
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[13] << ":"
338
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[13] << ":"
339
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[14]
339
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[14]
340
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[15];
340
      << std::hex << std::setw(2) << std::setfill('0') << (unsigned int) m_address[15]
341
      << std::dec << std::setfill(' ');
341
  }
342
  }

Return to bug 529