mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 08:46:58 +08:00
Revert "Ignore non-ascii characters in configuration file."
This reverts commit f7a938e5d7.
This commit is contained in:
@@ -489,8 +489,7 @@ spn_ag_char_map_chars(char const * p, unsigned int mask_ix)
|
||||
unsigned char const * v = ag_char_map_spanners[mask_ix];
|
||||
if (v == NULL)
|
||||
v = calc_ag_char_map_spanners(mask_ix);
|
||||
|
||||
while (!isascii(*p) || v[(unsigned)*p]) p++;
|
||||
while (v[(unsigned)*p]) p++;
|
||||
return (char *)(uintptr_t)p;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user