summaryrefslogtreecommitdiff
path: root/apt-pkg/versionmatch.cc
diff options
context:
space:
mode:
authorEugene V. Lyubimkin <jackyf@1501-debian>2008-11-05 23:10:30 +0200
committerEugene V. Lyubimkin <jackyf@1501-debian>2008-11-05 23:10:30 +0200
commit1ac90757e7d31b21fca7ddf7eb48cfc548b3ffb3 (patch)
tree883deeb538d7729b1bd7689c57f5ac9876d805a0 /apt-pkg/versionmatch.cc
parent40a6cfced93c564bedea27554427c91fa6eff08c (diff)
parent81c1659e78d9cae0ecdee331f16e86564adccf5d (diff)
Merged with debian-sid.
Diffstat (limited to 'apt-pkg/versionmatch.cc')
-rw-r--r--apt-pkg/versionmatch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/versionmatch.cc b/apt-pkg/versionmatch.cc
index 4a426809c..5c25c2f7b 100644
--- a/apt-pkg/versionmatch.cc
+++ b/apt-pkg/versionmatch.cc
@@ -124,7 +124,7 @@ bool pkgVersionMatch::MatchVer(const char *A,string B,bool Prefix)
const char *Ae = Ab + strlen(A);
// Strings are not a compatible size.
- if ((unsigned)(Ae - Ab) != B.length() && Prefix == false ||
+ if (((unsigned)(Ae - Ab) != B.length() && Prefix == false) ||
(unsigned)(Ae - Ab) < B.length())
return false;