diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-07-04 10:16:56 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-07-04 10:16:56 +0000 |
commit | ebb0a6f61826aeaba0aeb1866df41dee8b7c7269 (patch) | |
tree | 0711d2363f377c44632f5207cd69db149f2070e2 /rsync.h | |
parent | f94e821c782952437d7fe5a2ae1e0b1db8a4f4ab (diff) | |
download | rsync-ebb0a6f61826aeaba0aeb1866df41dee8b7c7269.tar.gz |
*** empty log message ***
Diffstat (limited to 'rsync.h')
-rw-r--r-- | rsync.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 { |