mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-29 08:37:36 -04:00
Guard checkNetAddress debug, unary + comment clarification
This commit is contained in:
parent
2d438b7407
commit
3cfa22e35b
2 changed files with 3 additions and 1 deletions
|
@ -420,6 +420,7 @@ void sockaddr_storage_dump(const sockaddr_storage & addr, std::string * outputSt
|
|||
const uint8_t * buf = reinterpret_cast<const uint8_t *>(&addr);
|
||||
for( uint32_t i = 0; i < sizeof(addr); ++i )
|
||||
output << std::setw(2) << std::setfill('0') << std::hex << +buf[i];
|
||||
// The unary +buf[i] operation forces a no-op type conversion to an int with the correct sign
|
||||
}}
|
||||
|
||||
if(outputString)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue