Some code looks weird in the `tls_dump()` function in _nnrpd/tls.c_: ``` *ss += ' '; *ss += (((ch >= ' ') && (ch <= '~')) ? ch : '.'); ``` Looks like it should be `*ss++ =` instead of `*ss +=` but it needs testing.
Some code looks weird in the
tls_dump()function in nnrpd/tls.c:Looks like it should be
*ss++ =instead of*ss +=but it needs testing.