From: Jan Kupec Date: Wed, 5 Sep 2007 12:32:41 +0000 (+0000) Subject: - fixed the order of operands of susetags local metadata status X-Git-Tag: BASE-SuSE-Linux-10_3-Branch~108 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5ffe5a102bc57ca90cee5b0626e00aa7fa26079;p=platform%2Fupstream%2Flibzypp.git - fixed the order of operands of susetags local metadata status computation (part of bug #304310) --- diff --git a/zypp/RepoManager.cc b/zypp/RepoManager.cc index 5589d9d..a2b12d6 100644 --- a/zypp/RepoManager.cc +++ b/zypp/RepoManager.cc @@ -327,7 +327,7 @@ namespace zypp case RepoType::YAST2_e : { - status = (RepoStatus( rawpath + "/media.1/media") && RepoStatus( rawpath + "/content") ); + status = RepoStatus( rawpath + "/content") && (RepoStatus( rawpath + "/media.1/media")); } break;