Skip to content

Commit

Permalink
Correctly identify these as non-separators
Browse files Browse the repository at this point in the history
  • Loading branch information
fgsch committed May 23, 2018
1 parent 6b8ee35 commit 52bff4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/libvarnish/vct.c
Expand Up @@ -54,7 +54,7 @@ const uint16_t vct_typtab[256] = {
[0x06] = VCT_CTL,
[0x07] = VCT_CTL,
[0x08] = VCT_CTL,
[0x09] = VCT_CTL | VCT_SP | VCT_SEPARATOR,
[0x09] = VCT_CTL | VCT_SP,
[0x0a] = VCT_CTL | VCT_CRLF,
[0x0b] = VCT_CTL | VCT_VT,
[0x0c] = VCT_CTL,
Expand All @@ -77,7 +77,7 @@ const uint16_t vct_typtab[256] = {
[0x1d] = VCT_CTL,
[0x1e] = VCT_CTL,
[0x1f] = VCT_CTL,
[0x20] = VCT_SP | VCT_SEPARATOR,
[0x20] = VCT_SP,
[0x21] = VCT_TCHAR,
[0x22] = VCT_SEPARATOR,
[0x23] = VCT_TCHAR,
Expand Down

0 comments on commit 52bff4e

Please sign in to comment.