View | Details | Raw Unified | Return to bug 400895
Collapse All | Expand All

(-)src/zypper-misc.cc (-5 / +5 lines)
Lines 2139-2148 Link Here
2139
    {
2139
    {
2140
      DBG << "marking all needed patches" << endl;
2140
      DBG << "marking all needed patches" << endl;
2141
2141
2142
      for_(it, God->pool().byKindBegin(ResKind::patch), 
2142
      for_(it, God->pool().proxy().byKindBegin(ResKind::patch), 
2143
               God->pool().byKindEnd  (ResKind::patch))
2143
               God->pool().proxy().byKindEnd  (ResKind::patch))
2144
      {
2144
      {
2145
        if (mark_patch_update(*it, skip_interactive, ignore_affects_pm))
2145
        if (mark_patch_update((*it)->candidateObj(), skip_interactive, ignore_affects_pm))
2146
          any_marked = true;
2146
          any_marked = true;
2147
      }
2147
      }
2148
    }
2148
    }
Lines 2172-2180 Link Here
2172
        }
2172
        }
2173
        else
2173
        else
2174
        {
2174
        {
2175
          for_(pit, q.poolItemBegin(), q.poolItemEnd())
2175
          for_(pit, q.selectableBegin(), q.selectableEnd())
2176
          {
2176
          {
2177
            any_marked = mark_patch_update(*pit, skip_interactive, ignore_affects_pm);
2177
            any_marked = mark_patch_update((*pit)->candidateObj(), skip_interactive, ignore_affects_pm);
2178
          }
2178
          }
2179
        }
2179
        }
2180
      }
2180
      }

Return to bug 400895