]> cygwin.com Git - cygwin-apps/setup.git/commitdiff
* filemanip.c (parse_filename): Revert previous change.
authorChristopher Faylor <me@cgf.cx>
Fri, 15 Feb 2002 06:46:23 +0000 (06:46 +0000)
committerChristopher Faylor <me@cgf.cx>
Fri, 15 Feb 2002 06:46:23 +0000 (06:46 +0000)
ChangeLog
filemanip.cc

index 0645fc2bb505004c627e370d374a8c7c97141606..d3496d80a41b815f4a8f1ac0696853d5fa67002a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-02-15  Christopher Faylor  <cgf@redhat.com>
+
+       * filemanip.c (parse_filename): Revert previous change.
+
 2002-02-14  Christopher Faylor  <cgf@redhat.com>
 
        * filemanip.c (parse_filename): Don't treat '_' as a version number
index 6ec225b720009f009594991c7565dcef4c1b7783..7aea9e038c5984b0df88e74f762152ac59b441a3 100644 (file)
@@ -97,7 +97,7 @@ parse_filename (const char *in_fn, fileparse & f)
   f.pkg[0] = f.what[0] = '\0';
   p = base (fn);
   for (ver = p; *ver; ver++)
-    if (*ver == '-')
+    if (*ver == '-' || *ver == '_')
       if (isdigit (ver[1]))
        {
          *ver++ = 0;
This page took 0.037459 seconds and 5 git commands to generate.