Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 66a69354120e0e2a24ab3fd28e4d5443 > files > 2

git-bugzilla-0-0.3.20091211git.fc14.src.rpm

From 2bdc1072ec9adb0886732bd7d58da91625c5fe9a Mon Sep 17 00:00:00 2001
From: Lubomir Rintel <lkundrak@v3.sk>
Date: Sat, 19 Dec 2009 17:23:27 +0100
Subject: [PATCH 2/2] Fix a warning about uninitialized value

---
 git-send-bugzilla.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-send-bugzilla.pl b/git-send-bugzilla.pl
index 8f30460..e40402e 100755
--- a/git-send-bugzilla.pl
+++ b/git-send-bugzilla.pl
@@ -51,7 +51,7 @@ sub authenticate {
 
 sub get_patch_info {
 	my $rev1 = shift;
-	my $rev2 = shift | '';
+	my $rev2 = shift || '';
 
 	my $description;
 	my $comment = '';
-- 
1.6.5.5