]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
Changed the -i parameter to -r in order to avoid a conflict with a generic flag inter... 1737/head
authorStephen F Taylor <steveftaylor@gmail.com>
Mon, 28 Apr 2014 21:31:07 +0000 (15:31 -0600)
committerStephen F Taylor <steveftaylor@gmail.com>
Mon, 28 Apr 2014 21:31:07 +0000 (15:31 -0600)
src/rbd_fuse/rbd-fuse.c

index 160cf215ecd5dc49d4e6cf6bd408d641d93b207f..085a38500cda04c413cbe47bdd7e08efaf418a4b 100644 (file)
@@ -670,7 +670,7 @@ static struct fuse_opt rbdfs_opts[] = {
        {"-p %s", offsetof(struct rbd_options, pool_name), KEY_RADOS_POOLNAME},
        {"--poolname=%s", offsetof(struct rbd_options, pool_name),
         KEY_RADOS_POOLNAME_LONG},
-    {"-i %s", offsetof(struct rbd_options, image_name), KEY_RBD_IMAGENAME},
+    {"-r %s", offsetof(struct rbd_options, image_name), KEY_RBD_IMAGENAME},
     {"--image=%s", offsetof(struct rbd_options, image_name),
     KEY_RBD_IMAGENAME_LONG},
 };
@@ -685,7 +685,7 @@ static void usage(const char *progname)
 "    -V   --version         print version\n"
 "    -c   --configfile      ceph configuration file [/etc/ceph/ceph.conf]\n"
 "    -p   --poolname        rados pool name [rbd]\n"
-"    -i   --image           RBD image name\n"
+"    -r   --image           RBD image name\n"
 "\n", progname);
 }