diff options
author | 2012-09-14 21:58:21 +0100 | |
---|---|---|
committer | 2012-09-14 21:58:21 +0100 | |
commit | 278cfb8c77d60644b81ae624b37db95b7a714410 (patch) | |
tree | b31185e26223c4a886826d4948fe97e4f65baabd | |
parent | 86a45d96c02086d83b13856e43ff21aeb927aefd (diff) | |
download | paludis-278cfb8c77d60644b81ae624b37db95b7a714410.tar.gz paludis-278cfb8c77d60644b81ae624b37db95b7a714410.tar.xz |
Parallel, not raw value for upgrade slots
-rw-r--r-- | paludis/repositories/e/e_repository_sets.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/repositories/e/e_repository_sets.cc b/paludis/repositories/e/e_repository_sets.cc index b6c454d37..496258bdb 100644 --- a/paludis/repositories/e/e_repository_sets.cc +++ b/paludis/repositories/e/e_repository_sets.cc @@ -312,7 +312,7 @@ ERepositorySets::security_set(bool insecurity) const else { Context local_local_local_context("When finding upgrade for '" + stringify(glsa_pkg->name()) + ":" - + ((*c)->slot_key() ? stringify((*c)->slot_key()->parse_value().raw_value()) : "(none)") + "'"); + + ((*c)->slot_key() ? stringify((*c)->slot_key()->parse_value().parallel_value()) : "(none)") + "'"); /* we need to find the best not vulnerable installable package that isn't masked * that's in the same slot as our vulnerable installed package. */ |