Blame SOURCES/git-request-pull-fix.patch

fdd391
diff --git a/git-request-pull.sh b/git-request-pull.sh
fdd391
index d566015..71abbf4 100755
fdd391
--- a/git-request-pull.sh
fdd391
+++ b/git-request-pull.sh
fdd391
@@ -79,7 +79,7 @@ find_matching_ref='
fdd391
 		my ($sha1, $ref, $deref) = /^(\S+)\s+(\S+?)(\^\{\})?$/;
fdd391
 		next unless ($sha1 eq $ARGV[1]);
fdd391
 		$found = abbr($ref);
fdd391
-		if ($deref && $ref eq "tags/$ARGV[2]") {
fdd391
+		if ($deref && $ref eq "refs/tags/$ARGV[2]") {
fdd391
 			$tagged = $found;
fdd391
 			last;
fdd391
 		}