From f6c702eba601aa3ecf253d1a4d9119949a0a2cf9 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sat, 8 Dec 2007 12:15:21 -0200 Subject: * Applied patch from Alexander Winston to use 'min' as symbol for minute, closes: #219034. --- apt-pkg/contrib/strutl.cc | 6 +++--- debian/changelog | 6 ++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index 006452af4..a04c266ba 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -331,19 +331,19 @@ string TimeToStr(unsigned long Sec) { if (Sec > 60*60*24) { - sprintf(S,"%lid %lih%lim%lis",Sec/60/60/24,(Sec/60/60) % 24,(Sec/60) % 60,Sec % 60); + sprintf(S,"%lid %lih%limin%lis",Sec/60/60/24,(Sec/60/60) % 24,(Sec/60) % 60,Sec % 60); break; } if (Sec > 60*60) { - sprintf(S,"%lih%lim%lis",Sec/60/60,(Sec/60) % 60,Sec % 60); + sprintf(S,"%lih%limin%lis",Sec/60/60,(Sec/60) % 60,Sec % 60); break; } if (Sec > 60) { - sprintf(S,"%lim%lis",Sec/60,Sec % 60); + sprintf(S,"%limin%lis",Sec/60,Sec % 60); break; } diff --git a/debian/changelog b/debian/changelog index 4db756063..1429623a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,10 +12,12 @@ apt (0.7.10) UNRELEASED; urgency=low with newest dpkg-shlibdeps changing the packaging building order and a patch from Robert Millan to fix parallel building, closes: #452862. + * Applied patch from Alexander Winston + to use 'min' as symbol for minute, closes: #219034. [ Program translations ] - Basque updated. Closes: #453088 - + [ Michael Vogt ] * debian/rules - fix https install location @@ -23,7 +25,7 @@ apt (0.7.10) UNRELEASED; urgency=low - print warning if the cache can not be locked (closes: #454561), thanks to Bastian Kleineidam - -- Michael Vogt Thu, 06 Dec 2007 14:38:31 +0100 + -- Otavio Salvador Sat, 08 Dec 2007 12:13:58 -0200 apt (0.7.9) unstable; urgency=low -- cgit v1.2.3