summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-08-02 21:05:18 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2010-08-02 21:05:18 +0200
commit5368af78fb6c996c8ee24e5cf8f645cf00259ead (patch)
treec6436d04572b3c518394a878e7dffb2914b1ea6c /apt-pkg
parent82cb2b8140fbe21a7000fcf2f3641f18fd0c0d27 (diff)
parent73dfa041545d34b79a4dd25a0baa3e64f5564a62 (diff)
* apt-pkg/cdrom.cc:
- fix off-by-one error in DropBinaryArch
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/cdrom.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/cdrom.cc b/apt-pkg/cdrom.cc
index e3e0027fc..0e36f44a2 100644
--- a/apt-pkg/cdrom.cc
+++ b/apt-pkg/cdrom.cc
@@ -229,7 +229,7 @@ bool pkgCdrom::DropBinaryArch(vector<string> &List)
// Between Start and End is the architecture
Start += 8;
if ((End = strstr(Start,"/")) != 0 && Start != End &&
- APT::Configuration::checkArchitecture(string(Start, --End)) == true)
+ APT::Configuration::checkArchitecture(string(Start, End)) == true)
continue; // okay, architecture is accepted
// not accepted -> Erase it