diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-02-03 16:24:40 +0100 |
---|---|---|
committer | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-02-03 17:13:04 +0100 |
commit | 60b8e088c32810174d8ee4245725e9228b0624fc (patch) | |
tree | 6c282fa1bba4c9c2c335b4607a7883ef61be0278 /src/common/include.am | |
parent | 61c7ec29f1951ddb7a8fe5109b86eb29686507b7 (diff) | |
download | tor-60b8e088c32810174d8ee4245725e9228b0624fc.tar.gz tor-60b8e088c32810174d8ee4245725e9228b0624fc.zip |
Add crypto_digest.[ch] to include.am
Included crypto_digest.[ch] into include.am in order to solve a compiling
issue. Also EOF line in crypto_digest.c added.
Follows #24658.
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
Diffstat (limited to 'src/common/include.am')
-rw-r--r-- | src/common/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/include.am b/src/common/include.am index 1777f33ad9..98e3984ea6 100644 --- a/src/common/include.am +++ b/src/common/include.am @@ -113,6 +113,7 @@ LIBOR_CRYPTO_A_SRC = \ src/common/compress_zlib.c \ src/common/compress_zstd.c \ src/common/crypto.c \ + src/common/crypto_digest.c \ src/common/crypto_rsa.c \ src/common/crypto_openssl_mgt.c \ src/common/crypto_pwbox.c \ @@ -163,6 +164,7 @@ COMMONHEADERS = \ src/common/confline.h \ src/common/container.h \ src/common/crypto.h \ + src/common/crypto_digest.h \ src/common/crypto_curve25519.h \ src/common/crypto_ed25519.h \ src/common/crypto_format.h \ |