]> granicus.if.org Git - curl/commitdiff
symbols.pl: handle '-' in the deprecated field
authorDaniel Stenberg <daniel@haxx.se>
Wed, 4 Mar 2015 07:36:38 +0000 (08:36 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 4 Mar 2015 07:36:38 +0000 (08:36 +0100)
... which otherwise made the script skip the _LAST define for some
symbols.

Reported-by: Jeroen Ooms
Bug: http://curl.haxx.se/mail/lib-2015-03/0052.html

docs/libcurl/symbols.pl

index d1ff7a656225189fb00e2d4adc42dcaee176d9d5..9503ebcc7b245eab1ebf91e32c20e6d0a2d682d0 100755 (executable)
@@ -71,7 +71,7 @@ while(<F>) {
         my $dep;
 
         # is there removed info?
-        if($vers =~ /([\d.]+)[ \t-]+([\d.]+)[ \t]+([\d.]+)/) {
+        if($vers =~ /([\d.]+)[ \t-]+([\d.-]+)[ \t]+([\d.]+)/) {
             ($intr, $dep, $rm)=($1, $2, $3);
         }
         # is it a dep-only line?