From: Wayne Davison Date: Sat, 22 May 2004 06:09:22 +0000 (+0000) Subject: Fixed a typo in the sending of the --checksum-seed option to the server. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/221ddb945658d0a77b19242bfb93b55e9f86b4aa Fixed a typo in the sending of the --checksum-seed option to the server. --- diff --git a/options.c b/options.c index 153049eb..e11d20ea 100644 --- a/options.c +++ b/options.c @@ -914,7 +914,7 @@ void server_options(char **args,int *argc) } if (checksum_seed) { - if (asprintf(&arg, "--checksum_seed=%d", checksum_seed) < 0) + if (asprintf(&arg, "--checksum-seed=%d", checksum_seed) < 0) goto oom; args[ac++] = arg; }