r831 - in packages/libnet-irc-perl/trunk: . debian

Gunnar Wolf gwolf@costa.debian.org
Sat, 26 Mar 2005 19:29:56 +0000


Author: gwolf
Date: 2005-03-26 19:29:55 +0000 (Sat, 26 Mar 2005)
New Revision: 831

Modified:
   packages/libnet-irc-perl/trunk/IRC.pm
   packages/libnet-irc-perl/trunk/debian/changelog
Log:
Fixed a warning


Modified: packages/libnet-irc-perl/trunk/IRC.pm
===================================================================
--- packages/libnet-irc-perl/trunk/IRC.pm	2005-03-26 19:22:05 UTC (rev 830)
+++ packages/libnet-irc-perl/trunk/IRC.pm	2005-03-26 19:29:55 UTC (rev 831)
@@ -138,7 +138,7 @@
   # we don't want to bother waiting on input or running
   # scheduled events if we're just flushing the output queue
   # so we bail out here
-  return if $caller eq 'Net::IRC::flush_output_queue';
+  return if defined($caller) and $caller eq 'Net::IRC::flush_output_queue';
 
   # Check the queue for scheduled events to run.
   if(!$self->schedulequeue->is_empty) {

Modified: packages/libnet-irc-perl/trunk/debian/changelog
===================================================================
--- packages/libnet-irc-perl/trunk/debian/changelog	2005-03-26 19:22:05 UTC (rev 830)
+++ packages/libnet-irc-perl/trunk/debian/changelog	2005-03-26 19:29:55 UTC (rev 831)
@@ -1,3 +1,11 @@
+libnet-irc-perl (0.75-3) unstable; urgency=low
+
+  * Added debian/watch file
+  * Fixed uninitialized value generating a warning in do_one_loop -
+    Thanks to Michael Ablassmeier for the patch. (Closes: #299606)
+
+ -- Gunnar Wolf <gwolf@debian.org>  Sat, 26 Mar 2005 13:28:24 -0600
+
 libnet-irc-perl (0.75-2) unstable; urgency=low
 
   * Fixed: Generated man pages now have the correct name (was
@@ -3,5 +11,5 @@
     consistently missing ::IRC) (Closes: #295967)
 
- -- Gunnar Wolf <gwolf@debian.org>  Wed,  2 Mar 2005 13:17:33 -0600
+ -- Gunnar Wolf <gwolf@debian.org>  Sat, 26 Mar 2005 13:26:44 -0600
 
 libnet-irc-perl (0.75-1) unstable; urgency=low