diff options
author | Brad King <brad.king@kitware.com> | 2023-11-28 22:55:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-11-28 23:54:33 (GMT) |
commit | 33e9e3438cb1045f378394e0847879e27584b00a (patch) | |
tree | 33e89607b29e9ba4f11249bdd8a97b536755398e /Utilities | |
parent | 15bb13bc51f752f8728211afcdd9e782f71532fe (diff) | |
download | CMake-33e9e3438cb1045f378394e0847879e27584b00a.zip CMake-33e9e3438cb1045f378394e0847879e27584b00a.tar.gz CMake-33e9e3438cb1045f378394e0847879e27584b00a.tar.bz2 |
librhash: Remove source fragments not needed for CMake
Extend commit 53048afa8d (librhash: Remove source fragments not needed
for CMake, 2016-11-03, v3.8.0-rc1~262^2~9) for fragments new after
updating to librhash 1.4.4.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmlibrhash/librhash/algorithms.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Utilities/cmlibrhash/librhash/algorithms.c b/Utilities/cmlibrhash/librhash/algorithms.c index 7768f2c..08e8e4e 100644 --- a/Utilities/cmlibrhash/librhash/algorithms.c +++ b/Utilities/cmlibrhash/librhash/algorithms.c @@ -306,8 +306,6 @@ size_t rhash_export_alg(unsigned hash_id, const void* ctx, void* out, size_t siz { case RHASH_TTH: return rhash_tth_export((const tth_ctx*)ctx, out, size); - case RHASH_BTIH: - return bt_export((const torrent_ctx*)ctx, out, size); case RHASH_AICH: return rhash_aich_export((const aich_ctx*)ctx, out, size); } @@ -329,8 +327,6 @@ size_t rhash_import_alg(unsigned hash_id, void* ctx, const void* in, size_t size { case RHASH_TTH: return rhash_tth_import((tth_ctx*)ctx, in, size); - case RHASH_BTIH: - return bt_import((torrent_ctx*)ctx, in, size); case RHASH_AICH: return rhash_aich_import((aich_ctx*)ctx, in, size); } |