summaryrefslogtreecommitdiff
path: root/apt-private/acqprogress.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-05-08 14:31:10 +0200
committerMichael Vogt <mvo@debian.org>2014-05-08 14:31:10 +0200
commit722c387941f8d313fe18b61828fb82a0bbca5dad (patch)
treedc8f9d9a7e47b41adbd972366f63387dc101c0c7 /apt-private/acqprogress.cc
parent4bcb5f4b531ccab5540e9a0554ce59b3724f7660 (diff)
apt-private/acqprogress.cc: do not show file size on IMSHit, it wasn't fetched, so why bother
Diffstat (limited to 'apt-private/acqprogress.cc')
-rw-r--r--apt-private/acqprogress.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/apt-private/acqprogress.cc b/apt-private/acqprogress.cc
index ee6c4536f..4bcfd8f00 100644
--- a/apt-private/acqprogress.cc
+++ b/apt-private/acqprogress.cc
@@ -64,8 +64,6 @@ void AcqTextStatus::IMSHit(pkgAcquire::ItemDesc &Itm)
cout << '\r' << BlankLine << '\r';
cout << _("Hit ") << Itm.Description;
- if (Itm.Owner->FileSize != 0)
- cout << " [" << SizeToStr(Itm.Owner->FileSize) << "B]";
cout << endl;
Update = true;
}