From d5ffe5a102bc57ca90cee5b0626e00aa7fa26079 Mon Sep 17 00:00:00 2001 From: Jan Kupec Date: Wed, 5 Sep 2007 12:32:41 +0000 Subject: [PATCH] - fixed the order of operands of susetags local metadata status computation (part of bug #304310) --- zypp/RepoManager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4