Skip to content
Snippets Groups Projects
Commit d8373cb9 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed test 1023 when using daily snapshots

parent 17df5d8c
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ if ( $what eq "version" ) {
$curlconfigversion = "illegal value";
}
}
else {
else { # "vernum" case
# Convert hex version to decimal for comparison's sake
if($filever =~ /^(..)(..)(..)$/) {
$curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3);
......@@ -41,7 +41,7 @@ else {
}
# Strip off the -DEV from the curl version if it's there
$version =~ s/-DEV$//;
$version =~ s/-\w*$//;
}
close CURLCONFIG;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment