summaryrefslogtreecommitdiff
path: root/sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2015-10-14 17:27:29 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2015-10-14 17:27:29 +0000
commit6a0b7ecd8f2d46d272fe4c3003dc4865054f77e6 (patch)
tree5d4dfa72ed0ecd21fc9f910abba9ef8497c7fc5c /sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp
parentUpgrade to OpenOffice 4.1.2-RC2. (diff)
Update sleuthkit to 4.2.0
Diffstat (limited to 'sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp')
-rw-r--r--sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp b/sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp
new file mode 100644
index 000000000000..cd026996ab98
--- /dev/null
+++ b/sysutils/sleuthkit/files/patch-tsk_hashdb_binsrch__index.cpp
@@ -0,0 +1,11 @@
+--- tsk/hashdb/binsrch_index.cpp.orig 2015-09-16 17:07:12 UTC
++++ tsk/hashdb/binsrch_index.cpp
+@@ -23,7 +23,7 @@
+ // the hash, so there are 2 ^ 12 or 4096 possible entries.
+ static const size_t IDX_IDX_ENTRY_COUNT = 4096;
+ static const size_t IDX_IDX_SIZE = IDX_IDX_ENTRY_COUNT * sizeof(uint64_t);
+-static const uint64_t IDX_IDX_ENTRY_NOT_SET = 0xFFFFFFFFFFFFFFFF;
++static const uint64_t IDX_IDX_ENTRY_NOT_SET = 0xFFFFFFFFFFFFFFFFULL;
+
+
+ /**