From c341d9b86a7ef8b4e542817f198a3b7836ee68f5 Mon Sep 17 00:00:00 2001 From: Dongsheng Yang Date: Sat, 12 Jan 2019 02:15:23 -0500 Subject: [PATCH] rbd: fix a typo in error output Signed-off-by: Dongsheng Yang --- src/tools/rbd/action/Journal.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rbd/action/Journal.cc b/src/tools/rbd/action/Journal.cc index 72663a1aa84a7..e647c2f37e0db 100644 --- a/src/tools/rbd/action/Journal.cc +++ b/src/tools/rbd/action/Journal.cc @@ -1214,7 +1214,7 @@ int execute_import(const po::variables_map &vm, r = do_import_journal(io_ctx, journal_name, path, vm[at::NO_ERROR].as(), vm[at::VERBOSE].as()); if (r < 0) { - std::cerr << "rbd: journal export: " << cpp_strerror(r) << std::endl; + std::cerr << "rbd: journal import: " << cpp_strerror(r) << std::endl; return r; } return 0; -- 2.39.5