libxbps: xbps_pkgpattern_xxx extend set of chars to be detected.
This commit is contained in:
parent
7716fa15de
commit
c6636d1b79
@ -55,7 +55,7 @@
|
|||||||
*/
|
*/
|
||||||
#define XBPS_PKGINDEX_VERSION "1.2"
|
#define XBPS_PKGINDEX_VERSION "1.2"
|
||||||
|
|
||||||
#define XBPS_API_VERSION "20111024"
|
#define XBPS_API_VERSION "20111024-1"
|
||||||
#define XBPS_VERSION "0.11.0"
|
#define XBPS_VERSION "0.11.0"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -172,11 +172,14 @@ xbps_pkgpattern_name(const char *pkg)
|
|||||||
|
|
||||||
assert(pkg != NULL);
|
assert(pkg != NULL);
|
||||||
|
|
||||||
res = strpbrk(pkg, "><-");
|
res = strpbrk(pkg, "><*?[]");
|
||||||
if (res == NULL)
|
if (res == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
len = strlen(pkg) - strlen(res) + 1;
|
len = strlen(pkg) - strlen(res) + 1;
|
||||||
|
if (pkg[len-2] == '-')
|
||||||
|
len--;
|
||||||
|
|
||||||
pkgname = malloc(len);
|
pkgname = malloc(len);
|
||||||
if (pkgname == NULL)
|
if (pkgname == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -193,7 +196,7 @@ xbps_pkgpattern_version(const char *pkg)
|
|||||||
|
|
||||||
assert(pkg != NULL);
|
assert(pkg != NULL);
|
||||||
|
|
||||||
res = strpbrk(pkg, "><-");
|
res = strpbrk(pkg, "><*?[]");
|
||||||
if (res == NULL)
|
if (res == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user