diff options
author | Brian Evans <grknight@gentoo.org> | 2018-02-13 13:16:31 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-02-13 14:18:25 -0500 |
commit | 5b63c143676ed5d0201f703b41421e2ec6930957 (patch) | |
tree | fc6d53c9b76c506bbd122ad24cfa51377e028d53 /dev-php/PEAR-Crypt_CHAP/files/CHAP-1.5.0-constructor.patch | |
parent | dev-lang/rakudo: Bump (diff) | |
download | gentoo-5b63c143676ed5d0201f703b41421e2ec6930957.tar.gz gentoo-5b63c143676ed5d0201f703b41421e2ec6930957.tar.bz2 gentoo-5b63c143676ed5d0201f703b41421e2ec6930957.zip |
dev-php/PEAR-Crypt_CHAP: Revbump to include a fixed constructor patch
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-php/PEAR-Crypt_CHAP/files/CHAP-1.5.0-constructor.patch')
-rw-r--r-- | dev-php/PEAR-Crypt_CHAP/files/CHAP-1.5.0-constructor.patch | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-php/PEAR-Crypt_CHAP/files/CHAP-1.5.0-constructor.patch b/dev-php/PEAR-Crypt_CHAP/files/CHAP-1.5.0-constructor.patch new file mode 100644 index 000000000000..6fa92898e106 --- /dev/null +++ b/dev-php/PEAR-Crypt_CHAP/files/CHAP-1.5.0-constructor.patch @@ -0,0 +1,65 @@ +diff -aurN a/CHAP.php b/CHAP.php +--- a/CHAP.php 1970-01-01 04:13:08.000000000 -0500 ++++ b/CHAP.php 2018-02-13 13:04:49.812389739 -0500 +@@ -78,7 +78,19 @@ + * @var integer + */ + var $chapid = 1; +- ++ ++ /** ++ * Constructor ++ * ++ * Generates a random challenge ++ * @return void ++ */ ++ function __construct() ++ { ++ parent::__construct(); ++ $this->generateChallenge(); ++ } ++ + /** + * Constructor + * +@@ -160,7 +172,19 @@ + * @var bool + */ + var $flags = 1; +- ++ ++ /** ++ * Constructor ++ * ++ * Loads the hash extension ++ * @return void ++ */ ++ function __construct() ++ { ++ parent::__construct(); ++ $this->loadExtension('hash'); ++ } ++ + /** + * Constructor + * +@@ -412,6 +436,19 @@ + /** + * Constructor + * ++ * Generates the 16 Bytes peer and authentication challenge ++ * @return void ++ */ ++ function __construct() ++ { ++ parent::__construct(); ++ $this->generateChallenge('peerChallenge', 16); ++ $this->generateChallenge('authChallenge', 16); ++ } ++ ++ /** ++ * Constructor ++ * + * Generates the 16 Bytes peer and authentication challenge + * @return void + */ |