refs.c: change ref_transaction_update() to do error checking and return status
[gitweb.git] / git-send-email.perl
index 8f5f986e649c14468df3933e59c6f67b15fe55c5..abd62b484cdaef8e6ab5ba366551c03959c08beb 100755 (executable)
@@ -1118,7 +1118,7 @@ sub file_name_is_absolute {
 
        # msys does not grok DOS drive-prefixes
        if ($^O eq 'msys') {
-               return ($path =~ m#^/# || $path =~ m#[a-zA-Z]\:#)
+               return ($path =~ m#^/# || $path =~ m#^[a-zA-Z]\:#)
        }
 
        require File::Spec::Functions;