Continue of previous fix: eliminate backslashes too.
This commit is contained in:
parent
9da94f20f7
commit
bc4908f401
@ -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…
x
Reference in New Issue
Block a user