]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Fixed a typo in the sending of the --checksum-seed option to the server.
authorWayne Davison <wayned@samba.org>
Sat, 22 May 2004 06:09:22 +0000 (06:09 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 22 May 2004 06:09:22 +0000 (06:09 +0000)
options.c

index 153049eb074f30d5199a903d9416d63234bf1c98..e11d20ea1636ae12e389cf9d954eab4552706933 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;
        }