r46670 - in /trunk/libauthen-radius-perl/debian: changelog patches/01_radius_port.patch patches/02_use_dumper.patch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Mon Nov 2 21:54:05 UTC 2009


Author: gregoa
Date: Mon Nov  2 21:53:59 2009
New Revision: 46670

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46670
Log:
Refresh patches.

Modified:
    trunk/libauthen-radius-perl/debian/changelog
    trunk/libauthen-radius-perl/debian/patches/01_radius_port.patch
    trunk/libauthen-radius-perl/debian/patches/02_use_dumper.patch

Modified: trunk/libauthen-radius-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-radius-perl/debian/changelog?rev=46670&op=diff
==============================================================================
--- trunk/libauthen-radius-perl/debian/changelog (original)
+++ trunk/libauthen-radius-perl/debian/changelog Mon Nov  2 21:53:59 2009
@@ -1,8 +1,12 @@
 libauthen-radius-perl (0.15-1) unstable; urgency=low
 
+  [ Jonathan Yu ]
   * New upstream release
   * Wrote a better control description
   * Added myself to Copyright and Uploaders
+
+  [ gregor herrmann ]
+  * Refresh patches.
 
  -- Jonathan Yu <jawnsy at cpan.org>  Sun, 01 Nov 2009 11:22:13 -0500
 

Modified: trunk/libauthen-radius-perl/debian/patches/01_radius_port.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-radius-perl/debian/patches/01_radius_port.patch?rev=46670&op=diff
==============================================================================
--- trunk/libauthen-radius-perl/debian/patches/01_radius_port.patch (original)
+++ trunk/libauthen-radius-perl/debian/patches/01_radius_port.patch Mon Nov  2 21:53:59 2009
@@ -15,7 +15,7 @@
  						 'radius-acct' => 1813 );
  		if (exists($services{$service})) {
  			$port = $services{$service};
-@@ -481,7 +481,7 @@
+@@ -496,7 +496,7 @@
  The default C<Service> is C<radius>, the alternative is C<radius-acct>.
  If you do not specify port in the C<Host> as a C<hostname:port>, then port
  specified in your F</etc/services> will be used. If there is nothing

Modified: trunk/libauthen-radius-perl/debian/patches/02_use_dumper.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-radius-perl/debian/patches/02_use_dumper.patch?rev=46670&op=diff
==============================================================================
--- trunk/libauthen-radius-perl/debian/patches/02_use_dumper.patch (original)
+++ trunk/libauthen-radius-perl/debian/patches/02_use_dumper.patch Mon Nov  2 21:53:59 2009
@@ -21,10 +21,10 @@
 -		print STDERR HexDump($data);
 +		print STDERR Data::Dumper::Dumper($data);
  	}
- 	$self->{'sock'}->send($data) || $self->set_error('ESENDFAIL');
+ 	$self->{'sock'}->send($data) || $self->set_error('ESENDFAIL', $!);
  }
 @@ -135,7 +134,7 @@
- 	$self->{'sock'}->recv ($data, 65536) or return $self->set_error('ERECVFAIL');
+ 	$self->{'sock'}->recv ($data, 65536) or return $self->set_error('ERECVFAIL', $!);
  	if ($debug) {
  		print STDERR "Received response:\n";
 -		print STDERR HexDump($data);




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