From cd9b83a5fcc0a3f25a0ccf2ae480023a56884cd3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Monin?= Date: Sat, 25 Apr 2015 14:18:28 +0200 Subject: [PATCH] rrdrestore: fix typo in option error message --- src/rrd_restore.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rrd_restore.c b/src/rrd_restore.c index 24a4f379..27365a7c 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -1412,7 +1412,7 @@ int rrd_restore( default: rrd_set_error("usage rrdtool %s [--range-check|-r] " - "[--force-overwrite/-f] file.xml file.rrd", + "[--force-overwrite|-f] file.xml file.rrd", argv[0]); return (-1); break; @@ -1420,8 +1420,8 @@ int rrd_restore( } /* while (42) */ if ((argc - optind) != 2) { - rrd_set_error("usage rrdtool %s [--range-check/-r] " - "[--force-overwrite/-f] file.xml file.rrd", argv[0]); + rrd_set_error("usage rrdtool %s [--range-check|-r] " + "[--force-overwrite|-f] file.xml file.rrd", argv[0]); return (-1); } -- 2.47.2