diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-05-13 17:51:05 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-05-13 17:51:05 +0000 |
commit | e82bdb118257ddea01a26f0c5503e06d17ae8794 (patch) | |
tree | 1b0f0a46b29bb14cdff0bbdbabddde0296ec3267 /apt-pkg/deb/debindexfile.cc | |
parent | 0430b189a2334653852de4f1a65d2833b281f4ce (diff) |
* fix for output of the description and the debTranslationsIndex::Exists()
Diffstat (limited to 'apt-pkg/deb/debindexfile.cc')
-rw-r--r-- | apt-pkg/deb/debindexfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index 67fddfbd4..ffecbdfca 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -406,7 +406,7 @@ string debTranslationsIndex::Info(const char *Type) const /* */ bool debTranslationsIndex::Exists() const { - return true; + return FileExists(IndexFile(LanguageCode().c_str())); } /*}}}*/ // TranslationsIndex::Size - Return the size of the index /*{{{*/ |