]> git.pld-linux.org Git - packages/perl-libwww.git/commitdiff
- use Digest::MD5 instead of obsolete MD5
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 30 Apr 2001 22:49:22 +0000 (22:49 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-libwww-Digest-MD5.patch -> 1.1

perl-libwww-Digest-MD5.patch [new file with mode: 0644]

diff --git a/perl-libwww-Digest-MD5.patch b/perl-libwww-Digest-MD5.patch
new file mode 100644 (file)
index 0000000..9305a2e
--- /dev/null
@@ -0,0 +1,21 @@
+diff -ur libwww-perl-5.53.orig/lib/LWP/Authen/Digest.pm libwww-perl-5.53/lib/LWP/Authen/Digest.pm
+--- libwww-perl-5.53.orig/lib/LWP/Authen/Digest.pm     Tue Jan 23 03:41:01 2001
++++ libwww-perl-5.53/lib/LWP/Authen/Digest.pm  Tue May  1 00:36:59 2001
+@@ -1,7 +1,7 @@
+ package LWP::Authen::Digest;
+ use strict;
+-require MD5;
++require Digest::MD5;
+ sub authenticate
+ {
+@@ -18,7 +18,7 @@
+     my $uri = $request->url->path_query;
+     $uri = "/" unless length $uri;
+-    my $md5 = new MD5;
++    my $md5 = new Digest::MD5;
+     my(@digest);
+     $md5->add(join(":", $user, $auth_param->{realm}, $pass));
This page took 0.164433 seconds and 4 git commands to generate.