mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Recognize numeric digits inside $id$ tags, eg: $XFree86$
PR: 30666 Submitted by: Tony Finch <dot@dotat.at>
This commit is contained in:
parent
b60e55dbd0
commit
303451da31
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ match(fp) /* group substring between two KDELIM's; then do pattern match */
|
||||||
if (c == EOF && feof(fp) | ferror(fp))
|
if (c == EOF && feof(fp) | ferror(fp))
|
||||||
return c;
|
return c;
|
||||||
switch (ctab[c]) {
|
switch (ctab[c]) {
|
||||||
case LETTER: case Letter:
|
case LETTER: case Letter: case DIGIT:
|
||||||
*tp++ = c;
|
*tp++ = c;
|
||||||
if (tp < line+sizeof(line)-4)
|
if (tp < line+sizeof(line)-4)
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue