diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-09-09 21:41:09 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-09-09 21:41:09 +0200 |
commit | 1631453861ac907938a084f3070a274c281d852a (patch) | |
tree | f9e3efdec83a2145f59a35713f9e6fd3ad9b4140 | |
parent | cd88b9dac79404291d869e12a21d15cd7887c078 (diff) | |
parent | 78acd6505b8c08f47dd44911b567df31d07aa78d (diff) |
* cmdline/apt-cache.cc:
- remove the gettext from a string that consists entirely
of variables (LP: #56792)
*
-rw-r--r-- | cmdline/apt-cache.cc | 3 | ||||
-rw-r--r-- | debian/changelog | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index b16a0e5d0..11bc4fe03 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -1533,7 +1533,8 @@ bool Policy(CommandLine &CmdL) if (SrcList->FindIndex(F,Indx) == false && _system->FindIndex(F,Indx) == false) return _error->Error(_("Cache is out of sync, can't x-ref a package file")); - printf(_("%4i %s\n"), + + printf("%4i %s\n", Plcy.GetPriority(F),Indx->Describe(true).c_str()); // Print the reference information for the package diff --git a/debian/changelog b/debian/changelog index 6a91d68d6..0c7e07c9b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +apt (0.7.14ubuntu7) intrepid; urgency=low + + * cmdline/apt-cache.cc: + - remove the gettext from a string that consists entirely + of variables (LP: #56792) + * + + -- + apt (0.7.14ubuntu6) intrepid; urgency=low * debian/apt.conf.autoremove: |