]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/deblistparser.cc
The modification to orderlist.cc is from a patch DonKult (David) gave me, The modific...
[apt.git] / apt-pkg / deb / deblistparser.cc
index 4be626741e0292bef06738ac7cad3c2bfbb8a14a..b59ae8896ac6a23d41e340edd083a8838d4ddfd5 100644 (file)
@@ -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 == ')')