From: Colin Patrick McCabe Date: Fri, 1 Apr 2011 17:59:22 +0000 (-0700) Subject: ceph_argparse: fix silly usage message X-Git-Tag: v0.27~184 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a603acc1f2a219adfc44a65bca298b422c6eb028;p=ceph.git ceph_argparse: fix silly usage message Signed-off-by: Colin McCabe --- diff --git a/src/common/ceph_argparse.cc b/src/common/ceph_argparse.cc index e4e6989cc6c8..0cc7288f8760 100644 --- a/src/common/ceph_argparse.cc +++ b/src/common/ceph_argparse.cc @@ -362,7 +362,7 @@ CephInitParameters ceph_argparse_early_args } else if (ceph_argparse_witharg(args, i, &val, "--name", "-n", (char*)NULL)) { if (!iparams.name.from_str(val)) { - std::cerr << "You must pass a string of the form ID.TYPE to " + std::cerr << "You must pass a string of the form TYPE.ID to " "the --name option." << std::endl; _exit(1); }