You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
623 B
26 lines
623 B
5 years ago
|
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
|
||
|
|