From f44f83998c81d6e707a8e377d4db8db0e6ee81fc Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 20 May 2016 02:06:46 -0500 Subject: [PATCH] queue: namespace the virtual 'world' package as something that could never actually exist --- libpkgconf/queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libpkgconf/queue.c b/libpkgconf/queue.c index 9c4ea8d..37fa634 100644 --- a/libpkgconf/queue.c +++ b/libpkgconf/queue.c @@ -72,7 +72,7 @@ bool pkgconf_queue_apply(pkgconf_list_t *list, pkgconf_queue_apply_func_t func, int maxdepth, unsigned int flags, void *data) { pkgconf_pkg_t world = { - .id = "world", + .id = "virtual:world", .realname = "virtual world package", .flags = PKGCONF_PKG_PROPF_VIRTUAL, }; @@ -100,7 +100,7 @@ pkgconf_queue_validate(pkgconf_list_t *list, int maxdepth, unsigned int flags) { bool retval = true; pkgconf_pkg_t world = { - .id = "world", + .id = "virtual:world", .realname = "virtual world package", .flags = PKGCONF_PKG_PROPF_VIRTUAL, };