From 221ddb945658d0a77b19242bfb93b55e9f86b4aa Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 22 May 2004 06:09:22 +0000 Subject: [PATCH] Fixed a typo in the sending of the --checksum-seed option to the server. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1