summaryrefslogtreecommitdiff
path: root/rsync.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-07-04 10:16:56 +0000
committerAndrew Tridgell <tridge@samba.org>1996-07-04 10:16:56 +0000
commitebb0a6f61826aeaba0aeb1866df41dee8b7c7269 (patch)
tree0711d2363f377c44632f5207cd69db149f2070e2 /rsync.h
parentf94e821c782952437d7fe5a2ae1e0b1db8a4f4ab (diff)
downloadrsync-ebb0a6f61826aeaba0aeb1866df41dee8b7c7269.tar.gz
*** empty log message ***
Diffstat (limited to 'rsync.h')
-rw-r--r--rsync.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/rsync.h b/rsync.h
index 9bd631a1..9301062a 100644
--- a/rsync.h
+++ b/rsync.h
@@ -170,6 +170,7 @@
#endif
/* the length of the md4 checksum */
+#define MD4_SUM_LENGTH 16
#define SUM_LENGTH 16
#ifndef MAXPATHLEN
@@ -188,7 +189,7 @@ struct file_struct {
char *name;
char *dir;
char *link;
- char sum[SUM_LENGTH];
+ char sum[MD4_SUM_LENGTH];
};
struct file_list {
@@ -202,7 +203,7 @@ struct sum_buf {
int len; /* length of chunk of file */
int i; /* index of this chunk */
uint32 sum1; /* simple checksum */
- char sum2[SUM_LENGTH]; /* md4 checksum */
+ char sum2[SUM_LENGTH]; /* checksum */
};
struct sum_struct {