diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-18 10:19:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-31 19:46:00 -0400 |
commit | 17f922d3719837fade1888dfa7cc99ac801ad800 (patch) | |
tree | c7adc43a6783337fcd86744a4c816821c25bd99a | |
parent | f5e22358b0d8f71e4d6bad4b72859e2d3f38c700 (diff) | |
download | tor-17f922d3719837fade1888dfa7cc99ac801ad800.tar.gz tor-17f922d3719837fade1888dfa7cc99ac801ad800.zip |
Only link crypto_dh_openssl.c once
(We do this unconditionally, since we still need it for tortls.c)
-rw-r--r-- | src/lib/crypt_ops/include.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/crypt_ops/include.am b/src/lib/crypt_ops/include.am index 05451cc0e0..803d448852 100644 --- a/src/lib/crypt_ops/include.am +++ b/src/lib/crypt_ops/include.am @@ -29,8 +29,7 @@ src_lib_libtor_crypt_ops_a_SOURCES += \ src/lib/crypt_ops/crypto_nss_mgt.c else src_lib_libtor_crypt_ops_a_SOURCES += \ - src/lib/crypt_ops/aes_openssl.c \ - src/lib/crypt_ops/crypto_dh_openssl.c + src/lib/crypt_ops/aes_openssl.c endif if USE_OPENSSL |