summaryrefslogtreecommitdiff
path: root/src/packages.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-10-22 22:29:21 +0200
committerGuillem Jover <guillem@debian.org>2014-10-23 00:17:40 +0200
commit9ee62ecfc8937f24a82805a424564997042dd984 (patch)
treed2b04dfce3aff666d61452d1439b0f97fb1f4e2d /src/packages.c
parentedeed5695089a283a0abffcf0044fc9bf1c3a0b8 (diff)
downloaddpkg-9ee62ecfc8937f24a82805a424564997042dd984.tar.gz
dpkg: Make the initial dependtry be 1 instead of 0
This gets rid of an unused dependtry step, which got accidentally introduced when the perl dpkg was rewritten in C, ages ago.
Diffstat (limited to 'src/packages.c')
-rw-r--r--src/packages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packages.c b/src/packages.c
index 67b18c060..62d7495d3 100644
--- a/src/packages.c
+++ b/src/packages.c
@@ -51,7 +51,7 @@
static struct pkginfo *progress_bytrigproc;
static struct pkg_queue queue = PKG_QUEUE_INIT;
-int sincenothing = 0, dependtry = 0;
+int sincenothing = 0, dependtry = 1;
void
enqueue_package(struct pkginfo *pkg)