diff --git a/include/opendht/utils.h b/include/opendht/utils.h index f1314c2a99e240c92e64094b7b81f52be6586ab0..0993402f8d885d3d44774a24630421f5f7b077e1 100644 --- a/include/opendht/utils.h +++ b/include/opendht/utils.h @@ -90,7 +90,7 @@ struct LogMethod { void logPrintable(const uint8_t *buf, size_t buflen) const { std::string buf_clean(buflen, '\0'); for (size_t i=0; i<buflen; i++) - buf_clean[i] = buf[i] >= 32 && buf[i] <= 126 ? buf[i] : '.'; + buf_clean[i] = std::isprint(buf[i]) ? buf[i] : '.'; (*this)("%s", buf_clean.c_str()); } private: