diff options
author | 2018-09-20 15:49:26 -0500 | |
---|---|---|
committer | 2018-09-20 15:49:26 -0500 | |
commit | 6294b344e5140f5467e6860f45a174440015304e (patch) | |
tree | e13f67f7d678da0f02e079e3a3ddca0b94392f3b /ChangeLog.txt | |
parent | 82b22f9d8cea2f8b29428b500bd1cefd412afbe2 (diff) | |
download | pseudo-6294b344e5140f5467e6860f45a174440015304e.tar.gz pseudo-6294b344e5140f5467e6860f45a174440015304e.tar.bz2 pseudo-6294b344e5140f5467e6860f45a174440015304e.zip |
also make sure inodes are 64-bit values to SQL
bind_int doesn't handle 64-bit ints on most targets, we need
bind_int64, and weren't using it. What a silly bug. Caught
and fixed by <Jack.Fewx@dell.com>.
Signed-off-by: seebs <seebs@seebs.net>
Diffstat (limited to 'ChangeLog.txt')
-rw-r--r-- | ChangeLog.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 6bbace5..e0c66fc 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -2,6 +2,9 @@ * (seebs) coerce inodes to signed int64_t range when shoving them into sqlite. * (seebs) add another /*fallthrough*/ comment to make gcc7 happy. + * (seebs) also make sure inodes are handled as 64-bit, not + 32-bit, which probably matters more. Thanks to <Jack.Fewx@dell.com> + for catching this. 2018-04-13: * (seebs) Reduce spamminess of path mismatches. |