Commit d9ca1e49 authored by Wayne Davison's avatar Wayne Davison

Tweak --checksum-seed docs.

parent 0ab8e166
...@@ -802,6 +802,7 @@ void usage(enum logcode F) ...@@ -802,6 +802,7 @@ void usage(enum logcode F)
#ifdef ICONV_OPTION #ifdef ICONV_OPTION
rprintf(F," --iconv=CONVERT_SPEC request charset conversion of filenames\n"); rprintf(F," --iconv=CONVERT_SPEC request charset conversion of filenames\n");
#endif #endif
rprintf(F," --checksum-seed=NUM set block/file checksum seed (advanced)\n");
rprintf(F," -4, --ipv4 prefer IPv4\n"); rprintf(F," -4, --ipv4 prefer IPv4\n");
rprintf(F," -6, --ipv6 prefer IPv6\n"); rprintf(F," -6, --ipv6 prefer IPv6\n");
rprintf(F," --version print version number\n"); rprintf(F," --version print version number\n");
......
...@@ -2551,15 +2551,15 @@ If rsync was complied without support for IPv6, the bf(--ipv6) option ...@@ -2551,15 +2551,15 @@ If rsync was complied without support for IPv6, the bf(--ipv6) option
will have no effect. The bf(--version) output will tell you if this will have no effect. The bf(--version) output will tell you if this
is the case. is the case.
dit(bf(--checksum-seed=NUM)) Set the checksum seed to the integer dit(bf(--checksum-seed=NUM)) Set the checksum seed to the integer NUM. This 4
NUM. This 4 byte checksum seed is included in each block and file byte checksum seed is included in each block and MD4 file checksum calculation
checksum calculation. By default the checksum seed is generated (the more modern MD5 file checksums don't use a seed). By default the checksum
by the server and defaults to the current code(time()). This option seed is generated by the server and defaults to the current code(time()). This
is used to set a specific checksum seed, which is useful for option is used to set a specific checksum seed, which is useful for
applications that want repeatable block and file checksums, or applications that want repeatable block checksums, or in the case where the
in the case where the user wants a more random checksum seed. user wants a more random checksum seed. Setting NUM to 0 causes rsync to use
Setting NUM to 0 causes rsync to use the default of code(time()) the default of code(time()) for checksum seed.
for checksum seed.
enddit() enddit()
manpagesection(DAEMON OPTIONS) manpagesection(DAEMON OPTIONS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment