Mailinglist Archive: zypp-commit (78 mails)
| < Previous | Next > |
[zypp-commit] <sat-solver> SuSE-Linux-11_0-Branch : - fix systemlevel == 1 conflict handling
- From: Michael Schroeder <mls@xxxxxxx>
- Date: Thu, 7 May 2009 10:08:33 +0200
- Message-id: <E1M1yfh-00023u-J9@xxxxxxxxxxxxxxxx>
ref: refs/heads/SuSE-Linux-11_0-Branch
commit 9b9244df2aa2040fbe9f877f9a7e417525e005e2
Author: Michael Schroeder <mls@xxxxxxx>
Date: Thu May 7 10:08:33 2009 +0200
- fix systemlevel == 1 conflict handling
---
src/solver.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/solver.c b/src/solver.c
index 5215686..05ba68c 100644
--- a/src/solver.c
+++ b/src/solver.c
@@ -2707,7 +2707,7 @@ run_solver(Solver *solv, int disablerules, int doweak)
queue_free(&dq);
return;
}
- if (level < systemlevel)
+ if (level < systemlevel || level == 1)
break;
n = 0;
} /* for(), decide */
--
To unsubscribe, e-mail: zypp-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: zypp-commit+help@xxxxxxxxxxxx
commit 9b9244df2aa2040fbe9f877f9a7e417525e005e2
Author: Michael Schroeder <mls@xxxxxxx>
Date: Thu May 7 10:08:33 2009 +0200
- fix systemlevel == 1 conflict handling
---
src/solver.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/solver.c b/src/solver.c
index 5215686..05ba68c 100644
--- a/src/solver.c
+++ b/src/solver.c
@@ -2707,7 +2707,7 @@ run_solver(Solver *solv, int disablerules, int doweak)
queue_free(&dq);
return;
}
- if (level < systemlevel)
+ if (level < systemlevel || level == 1)
break;
n = 0;
} /* for(), decide */
--
To unsubscribe, e-mail: zypp-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: zypp-commit+help@xxxxxxxxxxxx
| < Previous | Next > |