mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Continue of previous fix: eliminate backslashes too.
This commit is contained in:
parent
9da94f20f7
commit
bc4908f401
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ tgetent(bp, name)
|
|||
tcs = pd - 1;
|
||||
for (;;) {
|
||||
while ((tok = strsep(&ps, ":")) != NULL &&
|
||||
(*tok == '\0' || !isgraph(*tok)))
|
||||
(*tok == '\0' || *tok == '\\' || !isgraph(*tok)))
|
||||
;
|
||||
if (tok == NULL)
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue