From: Josh Durgin Date: Wed, 16 Jul 2014 20:30:14 +0000 (-0700) Subject: rbd: remove accidental repeated option X-Git-Tag: v0.84~58^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e891a93711b15554a2569cb10e2c2eac2c4c8e4f;p=ceph.git rbd: remove accidental repeated option --stripe-count is already parsed above this Signed-off-by: Josh Durgin --- diff --git a/src/rbd.cc b/src/rbd.cc index c068ed68aa21..5e46474ae6c7 100644 --- a/src/rbd.cc +++ b/src/rbd.cc @@ -2049,7 +2049,6 @@ int main(int argc, const char **argv) } else if (ceph_argparse_withlonglong(args, i, &bench_io_threads, &err, "--io-threads", (char*)NULL)) { } else if (ceph_argparse_withlonglong(args, i, &bench_bytes, &err, "--io-total", (char*)NULL)) { } else if (ceph_argparse_witharg(args, i, &bench_pattern, &err, "--io-pattern", (char*)NULL)) { - } else if (ceph_argparse_withlonglong(args, i, &stripe_count, &err, "--stripe-count", (char*)NULL)) { } else if (ceph_argparse_witharg(args, i, &val, "--path", (char*)NULL)) { path = strdup(val.c_str()); } else if (ceph_argparse_witharg(args, i, &val, "--dest", (char*)NULL)) {