diff options
author | Steve McIntyre <steve@einval.com> | 2011-11-23 19:34:58 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-11-23 19:34:58 +0100 |
commit | 01366a44bf85a61d0a533e867922b6097bfb216d (patch) | |
tree | 6e01506c8311c0ff66844d5f03f82ad7da1e83be /apt-pkg/cdrom.cc | |
parent | 5cbddfa3c7fd1d6be3657bdf2fae39c216fe5eeb (diff) |
factored out the decompressor code in IndexCopy::CopyPackages() and
TranslationsCopy::CopyTranslations() into a single common function
Diffstat (limited to 'apt-pkg/cdrom.cc')
-rw-r--r-- | apt-pkg/cdrom.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/cdrom.cc b/apt-pkg/cdrom.cc index 07983e44f..872879752 100644 --- a/apt-pkg/cdrom.cc +++ b/apt-pkg/cdrom.cc @@ -116,7 +116,7 @@ bool pkgCdrom::FindPackages(string CD, } } - // see if we find translatin indexes + // see if we find translation indices if (stat("i18n",&Buf) == 0) { D = opendir("i18n"); |