mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05: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))
|
||||
return c;
|
||||
switch (ctab[c]) {
|
||||
case LETTER: case Letter:
|
||||
case LETTER: case Letter: case DIGIT:
|
||||
*tp++ = c;
|
||||
if (tp < line+sizeof(line)-4)
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue