Fixes bug 73554. Incorrect error message for about-cache: when entry is not found.

patch=bbaetz@cs.mcgill.ca, r=bryner, sr=darin
This commit is contained in:
darin%netscape.com 2001-03-28 18:26:13 +00:00
Родитель cd054310fc
Коммит 75a6ceb4df
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -401,7 +401,7 @@ nsAboutCacheEntry::WriteCacheEntryUnavailable(nsIOutputStream *outputStream,
{
PRUint32 n;
nsCAutoString buffer;
buffer.Assign("The cache entry you selected is no longer unavailable.");
buffer.Assign("The cache entry you selected is no longer available.");
outputStream->Write(buffer, buffer.Length(), &n);
return NS_OK;
}