diff options
author | Guillem Jover <guillem@debian.org> | 2014-10-22 22:29:21 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2014-10-23 00:17:40 +0200 |
commit | 9ee62ecfc8937f24a82805a424564997042dd984 (patch) | |
tree | d2b04dfce3aff666d61452d1439b0f97fb1f4e2d /src/packages.c | |
parent | edeed5695089a283a0abffcf0044fc9bf1c3a0b8 (diff) | |
download | dpkg-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.c | 2 |
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) |