Author: mdz
Date: 2003-08-22 02:46:09 GMT
* Make APT::Get::Show-Upgraded (aka apt-get -u) default to true.
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-get.cc,v 1.139 2003/08/22 01:51:01 mdz Exp $
+// $Id: apt-get.cc,v 1.140 2003/08/22 02:46:09 mdz Exp $
/* ######################################################################
apt-get - Cover for dpkg
/* ######################################################################
apt-get - Cover for dpkg
if (ShwKept == true)
ShowKept(c1out,Cache);
Fail |= !ShowHold(c1out,Cache);
if (ShwKept == true)
ShowKept(c1out,Cache);
Fail |= !ShowHold(c1out,Cache);
- if (_config->FindB("APT::Get::Show-Upgraded",false) == true)
+ if (_config->FindB("APT::Get::Show-Upgraded",true) == true)
ShowUpgraded(c1out,Cache);
Fail |= !ShowDowngraded(c1out,Cache);
if (_config->FindB("APT::Get::Download-Only",false) == false)
ShowUpgraded(c1out,Cache);
Fail |= !ShowDowngraded(c1out,Cache);
if (_config->FindB("APT::Get::Download-Only",false) == false)
* Change upgraded/newly installed/not fully installed or removed
messages to be consistent and somewhat shorter (some translations
exceeded 80 characters even in the simplest case)
* Change upgraded/newly installed/not fully installed or removed
messages to be consistent and somewhat shorter (some translations
exceeded 80 characters even in the simplest case)
+ * Make APT::Get::Show-Upgraded (aka apt-get -u) default to true.