summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-08-30 17:21:47 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-08-30 17:21:47 +0200
commite7309a1c32ff422701b5cbc1e6e7f979701236b0 (patch)
tree6675782148e08ea312678b2c3cd11240ba1cd83e /ACE
parentcfe08f9b5738b5d439168d2ce9fc488cc51de4c4 (diff)
downloadATCD-e7309a1c32ff422701b5cbc1e6e7f979701236b0.tar.gz
Fixed error
* ACE/tests/SSL/Bug_2912_Regression_Test.cpp:
Diffstat (limited to 'ACE')
-rw-r--r--ACE/tests/SSL/Bug_2912_Regression_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/SSL/Bug_2912_Regression_Test.cpp b/ACE/tests/SSL/Bug_2912_Regression_Test.cpp
index b3cb5f9aff0..c713456137a 100644
--- a/ACE/tests/SSL/Bug_2912_Regression_Test.cpp
+++ b/ACE/tests/SSL/Bug_2912_Regression_Test.cpp
@@ -2,7 +2,7 @@
* @file Bug_2912_Regression_Test.cpp
*
* Reproduces the problems reported in bug 2912:
- * http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2912
+ * http://bugzilla.dre.vanderbilt.edu/show_bug.cgi?id=2912
*
* This test reproduces the following interactions:
*
@@ -172,8 +172,8 @@ get_dh1024 ()
if ((dh=DH_new()) == 0) return(0);
- BIGNUM* p = BN_bin2bn(dh1024_p,sizeof(dh1024_p),0)
- BIGNUM* g = BN_bin2bn(dh1024_g,sizeof(dh1024_g),0)
+ BIGNUM* p = BN_bin2bn(dh1024_p,sizeof(dh1024_p),0);
+ BIGNUM* g = BN_bin2bn(dh1024_g,sizeof(dh1024_g),0);
if ((p == 0) || (g == 0))
{