diff options
| author | David Kalnischkies <kalnischkies@gmail.com> | 2011-04-02 15:51:37 +0200 |
|---|---|---|
| committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-04-02 15:51:37 +0200 |
| commit | 56d53b54e795479194eb653741c5a816698db43f (patch) | |
| tree | f46ccbcb0524b0a0cf0b80d6521fd74fee3ae297 | |
| parent | 2029276f0343c96481d0d3cbbc367420b4a5f864 (diff) | |
disable the error discarding as it destroyes the error reporting about
failures with external solvers for now as long as i can't see a reason for it
| -rw-r--r-- | cmdline/apt-get.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 6ffecd777..a1264f54a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1887,7 +1887,7 @@ bool DoInstall(CommandLine &CmdL) // Call the scored problem resolver Fix->InstallProtect(); if (Fix->Resolve(true) == false) - _error->Discard(); + ; //FIXME: is there a valid reason for? _error->Discard(); delete Fix; } |
