r25465 - in /branches/upstream/net-hotline/current: Changes lib/Net/Hotline.pm lib/Net/Hotline/Client.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Sep 19 21:28:44 UTC 2008


Author: gregoa
Date: Fri Sep 19 21:28:41 2008
New Revision: 25465

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25465
Log:
[svn-upgrade] Integrating new upstream version, net-hotline (0.83)

Modified:
    branches/upstream/net-hotline/current/Changes
    branches/upstream/net-hotline/current/lib/Net/Hotline.pm
    branches/upstream/net-hotline/current/lib/Net/Hotline/Client.pm

Modified: branches/upstream/net-hotline/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/net-hotline/current/Changes?rev=25465&op=diff
==============================================================================
--- branches/upstream/net-hotline/current/Changes (original)
+++ branches/upstream/net-hotline/current/Changes Fri Sep 19 21:28:41 2008
@@ -1,4 +1,8 @@
 Revision history for Net::Hotline
+
+0.82 (11.27.2002) - John Siracusa <siracusa at mindspring.com>
+
+    * Clarified ambiguous call to rename() in Client.pm
 
 0.82 (06.10.2002) - John Siracusa <siracusa at mindspring.com>
 

Modified: branches/upstream/net-hotline/current/lib/Net/Hotline.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/net-hotline/current/lib/Net/Hotline.pm?rev=25465&op=diff
==============================================================================
--- branches/upstream/net-hotline/current/lib/Net/Hotline.pm (original)
+++ branches/upstream/net-hotline/current/lib/Net/Hotline.pm Fri Sep 19 21:28:41 2008
@@ -2,7 +2,7 @@
 
 # Provides the version number for the whole set of Net::Hotline:: libs.
 # Currently, this includes only the Net::Hotline::Client
-$VERSION = '0.82';
+$VERSION = '0.83';
 
 # The client module is loaded when you "use Net::Hotline"
 use Net::Hotline::Client;

Modified: branches/upstream/net-hotline/current/lib/Net/Hotline/Client.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/net-hotline/current/lib/Net/Hotline/Client.pm?rev=25465&op=diff
==============================================================================
--- branches/upstream/net-hotline/current/lib/Net/Hotline/Client.pm (original)
+++ branches/upstream/net-hotline/current/lib/Net/Hotline/Client.pm Fri Sep 19 21:28:41 2008
@@ -34,7 +34,7 @@
 # Class attributes
 #
 
-$VERSION = '0.82';
+$VERSION = '0.83';
 $DEBUG   = 0;
 
 # CRC perl code lifted from Convert::BinHex by Eryq (eryq at enteract.com)
@@ -3935,7 +3935,7 @@
 
     # Rename data file to remove the .data part
     ($finished_file = $data_file) =~ s/$self->{'DATA_FORK_EXT'}$//;
-    unless(rename($data_file, $finished_file))
+    unless(CORE::rename($data_file, $finished_file))
     {
       $task->error_text(qq(Could not rename "$data_file" to "$finished_file": $!));
       $self->{'LAST_ERROR'} = $task->error_text();
@@ -3950,7 +3950,7 @@
   elsif(! -e $rsrc_file)
   {
     ($finished_file = $data_file) =~ s/$self->{'DATA_FORK_EXT'}$//;
-    rename($data_file, $finished_file);
+    CORE::rename($data_file, $finished_file);
     $data_file = $finished_file;
   }
 




More information about the Pkg-perl-cvs-commits mailing list