Backout 1.14, it seems to be causing problems with libxml build

and I don't have time to investigate this code in much detail right
now.
This commit is contained in:
Bosko Milekic 2003-08-04 03:02:36 +00:00
parent 796263418b
commit d8af834050
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118410

View file

@ -212,7 +212,7 @@ matchbyorigin(const char *origin, int *retval)
continue;
cmd = plist_cmd(tmp + 1, &cp);
if (cmd == PLIST_ORIGIN) {
if (strncmp(origin, cp, strlen(origin)) == 0)
if (strcmp(origin, cp) == 0)
storeappend(store, installed[i]);
break;
}