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

Made the test work on perl 5.00

parent cd281472
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ if ( $what eq "version" ) {
}
else {
# Convert hex version to decimal for comparison's sake
/^([[:xdigit:]]{2})([[:xdigit:]]{2})([[:xdigit:]]{2})$/ ;
/^(..)(..)(..)$/ ;
$curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3);
# Strip off the -CVS from the curl version if it's there
......
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