diff options
author | Ishan Jayawardena <udeshike@gmail.com> | 2011-07-22 00:02:42 +0530 |
---|---|---|
committer | Ishan Jayawardena <udeshike@gmail.com> | 2011-07-22 00:02:42 +0530 |
commit | 9e86f072f214e32b75b7c8cef89ec759c981378d (patch) | |
tree | 7da11149253294faacedad371d2aa2bb468ec72f /apt-pkg | |
parent | a70fc3877bacf483b034b40dc2c288a26436ceb8 (diff) |
Modified debdelta to use ExecFork() ExecWait() instead of fork() and waitpid().
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-item.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 0f7f7c00e..e81906714 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -2080,7 +2080,7 @@ pkgAcqDebdelta::pkgAcqDebdelta(pkgAcquire *Owner,pkgSourceList *Sources, + string(Version.ParentPkg().CandVersion()) + "_" + string(Version.Arch()) + ".debdelta"; Retries = _config->FindI("Acquire::Retries",0); - Debug = true; + Debug = false; if (Version.Arch() == 0) { _error->Error(_("I wasn't able to locate a file for the %s package. " @@ -2385,6 +2385,7 @@ bool IndexTarget::IsOptional() const { return false; return true; } + bool IndexTarget::IsSubIndex() const { if (ShortDesc != "TranslationIndex") return false; |