Fixed a typo in the sending of the --checksum-seed option to the server.
[rsync/rsync.git] / options.c
index 153049e..e11d20e 100644 (file)
--- 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;
        }