]> git.ipfire.org Git - pakfire.git/commitdiff
Don't add everything as a weak request.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 27 Oct 2012 19:47:28 +0000 (21:47 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 27 Oct 2012 19:47:28 +0000 (21:47 +0200)
python/src/request.c

index 974e853db5e6e76ea440618752a18b03e20d14ab..7d7c5b200697c41769bec71b0dab4c1d0f3b1040 100644 (file)
@@ -64,15 +64,15 @@ PyObject *Request_dealloc(RequestObject *self) {
 }
 
 void _Request_solvable(RequestObject *self, Id what, Id solvable) {
-       queue_push2(&self->_queue, what|SOLVER_SOLVABLE|SOLVER_WEAK, solvable);
+       queue_push2(&self->_queue, what|SOLVER_SOLVABLE, solvable);
 }
 
 void _Request_relation(RequestObject *self, Id what, Id relation) {
-       queue_push2(&self->_queue, what|SOLVER_SOLVABLE_PROVIDES|SOLVER_WEAK, relation);
+       queue_push2(&self->_queue, what|SOLVER_SOLVABLE_PROVIDES, relation);
 }
 
 void _Request_name(RequestObject *self, Id what, Id provides) {
-       queue_push2(&self->_queue, what|SOLVER_SOLVABLE_NAME|SOLVER_WEAK, provides);
+       queue_push2(&self->_queue, what|SOLVER_SOLVABLE_NAME, provides);
 }
 
 PyObject *Request_install_solvable(RequestObject *self, PyObject *args) {