1
0
mirror of https://github.com/PDP-10/its.git synced 2026-02-04 15:53:01 +00:00

Build IPAK from source.

Edited to match the C library which has smatch(), not match().
This commit is contained in:
Lars Brinkhoff
2021-08-27 20:26:34 +02:00
parent 70addc4165
commit f5e288805f
3 changed files with 5 additions and 3 deletions

View File

@@ -200,12 +200,12 @@ imatch (s, dp) char *s; desc *dp;
if (fs.fn1)
{c6tos (fs.fn1, pattern);
c6tos (dp->name1, buffer);
if (!match (pattern, buffer)) return (FALSE);
if (!smatch (pattern, buffer)) return (FALSE);
}
if (fs.fn2)
{c6tos (fs.fn2, pattern);
c6tos (dp->name2, buffer);
if (!match (pattern, buffer)) return (FALSE);
if (!smatch (pattern, buffer)) return (FALSE);
}
return (TRUE);
}
@@ -442,4 +442,3 @@ error (s, a1, a2)
{cprint (cerr, s, a1, a2);
cputc ('\n', cerr);
}