summaryrefslogtreecommitdiff
path: root/rsync.h
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2008-02-04 07:29:22 -0800
committerWayne Davison <wayned@samba.org>2008-02-04 07:29:22 -0800
commitd6e6333a02a900c2863200a0feff4349d4003a8d (patch)
tree4a572bdff4d1ec6368ffbcec59686268758f43f0 /rsync.h
parent970ce063ee0c17b69ee5343d6934faab479f6ed8 (diff)
downloadrsync-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rsync.h b/rsync.h
index 25922305..092cc999 100644
--- a/rsync.h
+++ b/rsync.h
@@ -540,6 +540,7 @@ struct hashtable {
void *nodes;
int32 size, entries;
uint32 node_size;
+ int key64;
};
struct ht_int32_node {