]> git.pld-linux.org Git - packages/php-pear-Auth.git/blame - php-pear-Auth-path_fix.patch
- merged from DEVEL
[packages/php-pear-Auth.git] / php-pear-Auth-path_fix.patch
CommitLineData
05092546
AG
1fixes path of Crypt/CHAP.php.
2
3--- php-pear-Auth-1.2.3.orig/Auth-1.2.3/Container/RADIUS.php 2004-12-04 21:39:21.815463240 +0100
4+++ php-pear-Auth-1.2.3/Auth-1.2.3/Container/RADIUS.php 2004-12-04 21:40:02.488280032 +0100
5@@ -110,7 +110,7 @@
e25fe28d
ER
6 $this->radius->chapid = 1;
7 $this->radius->response = pack('H*', $password);
8 } else {
9- require_once 'Crypt_CHAP/CHAP.php';
10+ require_once 'Crypt/CHAP.php';
11 $classname = 'Crypt_' . $this->authtype;
12 $crpt = new $classname;
13 $crpt->password = $password;
05092546 14@@ -121,7 +121,7 @@
e25fe28d
ER
15 }
16
17 case 'MSCHAPv2':
18- require_once 'Crypt_CHAP/CHAP.php';
19+ require_once 'Crypt/CHAP.php';
20 $crpt = new Crypt_MSCHAPv2;
21 $crpt->username = $username;
22 $crpt->password = $password;
This page took 0.057547 seconds and 4 git commands to generate.