diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-08-05 19:25:23 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-08-05 19:25:23 +0000 |
commit | 224fecb28194358fbe414df5b47bf6c4e51b63db (patch) | |
tree | 2cad373a63f18d29fc85123732e5af4717411154 /src/common/crypto.c | |
parent | 1ec3081a84d285f66704490f8a71d67b2cd8c4b1 (diff) | |
download | tor-224fecb28194358fbe414df5b47bf6c4e51b63db.tar.gz tor-224fecb28194358fbe414df5b47bf6c4e51b63db.zip |
Appease insane windows compiler. (Oh no, an extra semi, the sky is falling!)
svn:r4722
Diffstat (limited to 'src/common/crypto.c')
-rw-r--r-- | src/common/crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index c826bc1d7c..03bab77ae1 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1296,7 +1296,7 @@ static void init_dh_param(void) { ctx = BN_CTX_new(); for (i=0; i<5; ++i) { - BIGNUM *x = BN_new(), *g_x = BN_new(), *p_x = BN_new();; + BIGNUM *x = BN_new(), *g_x = BN_new(), *p_x = BN_new(); char *x_s, *g_x_s, *p_x_s; BN_copy(x, dh_param_p); BN_copy(p_x, dh_param_p); |