diff options
author | Julian Andres Klode <jak@debian.org> | 2011-04-14 12:28:00 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2011-04-14 12:28:00 +0200 |
commit | 90cf90b254e5dbe8194dc93fa8f57f891b3ea518 (patch) | |
tree | b8edefe26847e1d5146d021ce06cc648ea83b614 /apt-pkg/deb/deblistparser.cc | |
parent | 3518021283aa5d44e441fdce59615ca2af9d94fc (diff) |
* apt-pkg/deb/deblistparser.cc:
- Handle no space before "[" in build-dependencies (LP: #72344)
Diffstat (limited to 'apt-pkg/deb/deblistparser.cc')
-rw-r--r-- | apt-pkg/deb/deblistparser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 4be626741..b59ae8896 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -487,7 +487,7 @@ const char *debListParser::ParseDepends(const char *Start,const char *Stop, // Parse off the package name const char *I = Start; for (;I != Stop && isspace(*I) == 0 && *I != '(' && *I != ')' && - *I != ',' && *I != '|'; I++); + *I != ',' && *I != '|' && *I != '[' && *I != ']'; I++); // Malformed, no '(' if (I != Stop && *I == ')') |