http://bugzilla.novell.com/show_bug.cgi?id=627316 http://bugzilla.novell.com/show_bug.cgi?id=627316#c1 Michael Andres <ma@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P3 - Medium Status|NEW |NEEDINFO InfoProvider| |jkupec@novell.com --- Comment #1 from Michael Andres <ma@novell.com> 2010-08-02 12:44:24 CEST --- @Jano: As zypper seems to operate on PoolItems, I ported the ui::Selectables classification methods isNeeded() and isUnwanted() to PoolItem. - isNeeded are already selected or unlocked-broken patches. - isUnwanted are locked-broken patches. Thus zyppers list_patch_updates could e.g list - if (all || it->isBroken()) + if (all || it->isNeeded()) and classify as - tr << (it->isBroken() ? _("needed") : _("not needed")); + tr << (it->isNeeded() ? _("needed") : (it->isUnwanted() ? _("unwanted") : _("not needed"))); There are probably some other locations where changes are needed to respect unwanted (locked) patches. The new methods are available in libzypp-7.9.0 (for 11.3) and -8.1.0. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.