diff --git a/skeletons/OCTET_STRING_jer.c b/skeletons/OCTET_STRING_jer.c index e4ffa172d..f6c5ff596 100644 --- a/skeletons/OCTET_STRING_jer.c +++ b/skeletons/OCTET_STRING_jer.c @@ -252,8 +252,10 @@ static ssize_t OCTET_STRING__convert_hexadecimal(void *sptr, const void *chunk_b for(; p < pend; p++) { int ch = *(const unsigned char *)p; switch(ch) { - /* allow tab, space */ - case 0x09: case 0x20: + /* don't allow tab + case 0x09: + */ + case 0x20: /* allow space */ /* allow LF, FF, CR */ case 0x0a: case 0x0c: case 0x0d: continue;