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 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;
        }