summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Hoyt <josh@janrain.com>2006-01-06 22:37:28 +0000
committerJosh Hoyt <josh@janrain.com>2006-01-06 22:37:28 +0000
commit195d91c8704a726526dd3c34260c17575ff001f0 (patch)
tree0e3fc66ba956b55d17b0e2b79ac23a0e04f92a9c
parent9937ebfe347f22fa71516f197b54785b42dd2dba (diff)
downloadphp-openid-195d91c8704a726526dd3c34260c17575ff001f0.zip
php-openid-195d91c8704a726526dd3c34260c17575ff001f0.tar.gz
php-openid-195d91c8704a726526dd3c34260c17575ff001f0.tar.bz2
[project @ Use gmp_div_q instead of the alias gmp_div]
-rw-r--r--Net/OpenID/CryptUtil.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Net/OpenID/CryptUtil.php b/Net/OpenID/CryptUtil.php
index 4fe9b46..d54de10 100644
--- a/Net/OpenID/CryptUtil.php
+++ b/Net/OpenID/CryptUtil.php
@@ -615,7 +615,7 @@ class Net_OpenID_GmpMathWrapper extends Net_OpenID_MathWrapper {
function div($x, $y)
{
- return gmp_div($x, $y);
+ return gmp_div_q($x, $y);
}
function powmod($base, $exponent, $modulus)