proj/portage-utils:master commit in: libq/
"Fabian Groffen" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786792697.5d3c55e7727463baa773ece1fa3829be3a9075ba.grobian@gentoo> |
commit: 5d3c55e7727463baa773ece1fa3829be3a9075ba
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sat Jun 13 14:16:01 2026 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Aug 15 11:18:17 2026 +0000
URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=5d3c55e7
libq/atom: fix mixup of treating (-) as (+)
Fixes: 199e4f62b4ede5f2319ef6795a15737ac0882d09
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
libq/atom.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libq/atom.c b/libq/atom.c
index fe733c66..e9cfd480 100644
--- a/libq/atom.c
+++ b/libq/atom.c
@@ -254,7 +254,7 @@ atom_ctx *atom_explode_cat
}
else if (strncmp(ptr, "(-)", 3) == 0)
{
- w->sfx_cond = ATOM_UC_PREV_ENABLED;
+ w->sfx_cond = ATOM_UC_PREV_DISABLED;
*ptr = '\0';
ptr += 3;
}