teragrep / rlo_06

Syslog (RFC 5424) library for Java
GNU Affero General Public License v3.0
1 stars 4 forks source link

change ascii dec codes to actual characters #38

Open kortemik opened 1 year ago

kortemik commented 1 year ago

currently used as

if (byte b != 10)

should be

if (byte b != '\n')