Commit 7c06e407 authored by David Dykstra's avatar David Dykstra

The --compare-dest option was not listed as accepting a string parameter

like it was supposed to.  There should probably be a testsuite test for
--compare-dest.
parent c13ad7ec
......@@ -281,7 +281,7 @@ static struct poptOption long_options[] = {
{"max-delete", 0, POPT_ARG_INT, &max_delete},
{"timeout", 0, POPT_ARG_INT, &io_timeout},
{"temp-dir", 'T', POPT_ARG_STRING, &tmpdir},
{"compare-dest", 0, POPT_ARG_NONE, &compare_dest},
{"compare-dest", 0, POPT_ARG_STRING, &compare_dest},
/* TODO: Should this take an optional int giving the compression level? */
{"compress", 'z', POPT_ARG_NONE, &do_compression},
{"daemon", 0, POPT_ARG_NONE, &am_daemon},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment