Also handling unencoded newline characters

This commit is contained in:
Klaus Schmidinger 2001-10-07 13:41:56 +02:00
parent b8471a3f11
commit a1a248ae42
1 changed files with 1 additions and 0 deletions

View File

@ -852,6 +852,7 @@ char *siGetDescriptorText (u_char *Buffer, u_int Length)
if (*Buffer == 0) break;
if ((*Buffer >= ' ' && *Buffer <= '~') ||
(*Buffer == '\n') ||
(*Buffer >= 0xa0 && *Buffer <= 0xff)) *tmp++ = *Buffer;
if (*Buffer == 0x8A) *tmp++ = '\n';
if (*Buffer == 0x86 || *Buffer == 0x87) *tmp++ = ' ';