summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire-item.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-07-30 16:53:02 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2007-07-30 16:53:02 +0200
commit9498d18252a848b06f281434c173cece967ebbf6 (patch)
treecc6b6f4c40c9dd1fcf33eeaa8ef46d1a6d459425 /apt-pkg/acquire-item.cc
parent5d0d7fae8775dbc2c042bc203e544c79b852b680 (diff)
* apt-pkg/acquire-item.cc:
- md5sum -> hashsum
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r--apt-pkg/acquire-item.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc
index 6d3bc25f3..a7132ce1d 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -644,7 +644,7 @@ void pkgAcqIndex::Done(string Message,unsigned long Size,string Hash,
if (!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile))
{
Status = StatAuthError;
- ErrorText = _("MD5Sum mismatch");
+ ErrorText = _("Hash Sum mismatch");
Rename(DestFile,DestFile + ".FAILED");
return;
}
@@ -1397,7 +1397,7 @@ void pkgAcqArchive::Done(string Message,unsigned long Size,string CalcHash,
if(!hash.VerifyFile(DestFile))
{
Status = StatError;
- ErrorText = _("MD5Sum mismatch");
+ ErrorText = _("Hash Sum mismatch");
if(FileExists(DestFile))
Rename(DestFile,DestFile + ".FAILED");
return;
@@ -1541,7 +1541,7 @@ void pkgAcqFile::Done(string Message,unsigned long Size,string CalcHash,
if(!hash.VerifyFile(DestFile))
{
Status = StatError;
- ErrorText = "MD5Sum mismatch";
+ ErrorText = "Hash Sum mismatch";
Rename(DestFile,DestFile + ".FAILED");
return;
}