diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-12-09 17:49:46 -0800 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-12-09 17:49:46 -0800 |
commit | de4e6f6b78154cf2c4afea4aea74b5bca3fba96f (patch) | |
tree | 2759f5959ce15112935a2e9d22e6395e8b0ddd71 /apt-pkg/contrib | |
parent | f23153d046f014f96d442fca5b9ef6ede7fcf546 (diff) | |
parent | 3205e1f3b0dc9310fe767aef23824d0deb7a26bf (diff) |
merged from the debian-sid branch
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/mmap.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/contrib/mmap.cc b/apt-pkg/contrib/mmap.cc index eed438250..04a45811b 100644 --- a/apt-pkg/contrib/mmap.cc +++ b/apt-pkg/contrib/mmap.cc @@ -210,7 +210,8 @@ unsigned long DynamicMMap::RawAllocate(unsigned long Size,unsigned long Aln) // Just in case error check if (Result + Size > WorkSpace) { - _error->Error(_("Dynamic MMap ran out of room")); + _error->Error(_("Dynamic MMap ran out of room. Please increase the size " + "of APT::Cache-Limit. Current value: %lu. (man 5 apt.conf)"), WorkSpace); return 0; } @@ -272,7 +273,8 @@ unsigned long DynamicMMap::WriteString(const char *String, // Just in case error check if (Result + Len > WorkSpace) { - _error->Error("Dynamic MMap ran out of room"); + _error->Error(_("Dynamic MMap ran out of room. Please increase the size " + "of APT::Cache-Limit. Current value: %lu. (man 5 apt.conf)"), WorkSpace); return 0; } |