]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/sourcelist.cc
rework previous patch to avoid changing the inline code
[apt.git] / apt-pkg / sourcelist.cc
index 46025fc7487d58fb49666cee42be0e086d4b3e97..f5f458099f9098858967291032d69b4d9d3162e1 100644 (file)
@@ -270,7 +270,7 @@ bool pkgSourceList::ReadAppend(string File)
       // CNC:2003-02-20 - Do not break if '#' is inside [].
       for (I = Buffer; *I != 0 && *I != '#'; I++)
          if (*I == '[')
-           for (I++; *I != 0 && *I != ']'; I++);
+           I = strchr(I + 1, ']');
       *I = 0;
       
       const char *C = _strstrip(Buffer);