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/crypto_digest.c | |
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/crypto_digest.c')
-rw-r--r-- | src/common/crypto_digest.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/crypto_digest.c b/src/common/crypto_digest.c index f5c3118256..149b3a984d 100644 --- a/src/common/crypto_digest.c +++ b/src/common/crypto_digest.c @@ -660,3 +660,4 @@ crypto_xof_free_(crypto_xof_t *xof) memwipe(xof, 0, sizeof(crypto_xof_t)); tor_free(xof); } + |