From 7c06e407ecb9c99abce58665f85551d8e99707a9 Mon Sep 17 00:00:00 2001 From: David Dykstra Date: Thu, 30 Aug 2001 16:24:03 +0000 Subject: [PATCH] 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. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index ec0fc70b..6b3227dd 100644 --- a/options.c +++ b/options.c @@ -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}, -- 2.34.1