diff options
author | Wayne Davison <wayned@samba.org> | 2008-02-04 07:29:22 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2008-02-04 07:29:22 -0800 |
commit | d6e6333a02a900c2863200a0feff4349d4003a8d (patch) | |
tree | 4a572bdff4d1ec6368ffbcec59686268758f43f0 /rsync.h | |
parent | 970ce063ee0c17b69ee5343d6934faab479f6ed8 (diff) | |
download | rsync-d6e6333a02a900c2863200a0feff4349d4003a8d.tar.gz |
Store the key64 flag from hashtable_create() in the hashtable structure
so that hashtable_find() knows which hashtable is which on a 64-bit
architecture.
Diffstat (limited to 'rsync.h')
-rw-r--r-- | rsync.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -540,6 +540,7 @@ struct hashtable { void *nodes; int32 size, entries; uint32 node_size; + int key64; }; struct ht_int32_node { |