From 25bfd4c786d0701fe6ae06e3d120098bd82f8aa0 Mon Sep 17 00:00:00 2001 From: runsisi Date: Wed, 11 May 2016 20:52:38 +0800 Subject: [PATCH] rbd-mirror: fix typo Signed-off-by: runsisi --- src/tools/rbd_mirror/image_replayer/BootstrapRequest.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/rbd_mirror/image_replayer/BootstrapRequest.cc b/src/tools/rbd_mirror/image_replayer/BootstrapRequest.cc index 6f7210e224a8..9e10add37e1b 100644 --- a/src/tools/rbd_mirror/image_replayer/BootstrapRequest.cc +++ b/src/tools/rbd_mirror/image_replayer/BootstrapRequest.cc @@ -149,7 +149,7 @@ void BootstrapRequest::handle_get_local_image_id(int r) { if (r == -ENOENT) { dout(10) << ": image not registered locally" << dendl; } else if (r < 0) { - derr << ": failed to retreive local image id: " << cpp_strerror(r) << dendl; + derr << ": failed to retrieve local image id: " << cpp_strerror(r) << dendl; finish(r); return; } @@ -174,7 +174,7 @@ void BootstrapRequest::handle_get_remote_tag_class(int r) { dout(20) << ": r=" << r << dendl; if (r < 0) { - derr << ": failed to retreive remote client: " << cpp_strerror(r) << dendl; + derr << ": failed to retrieve remote client: " << cpp_strerror(r) << dendl; finish(r); return; } @@ -223,7 +223,7 @@ void BootstrapRequest::handle_get_client(int r) { if (r == -ENOENT) { dout(10) << ": client not registered" << dendl; } else if (r < 0) { - derr << ": failed to retreive client: " << cpp_strerror(r) << dendl; + derr << ": failed to retrieve client: " << cpp_strerror(r) << dendl; finish(r); return; } else if (decode_client_meta()) { @@ -486,7 +486,7 @@ void BootstrapRequest::handle_get_remote_tags(int r) { dout(20) << ": r=" << r << dendl; if (r < 0) { - derr << ": failed to retreive remote tags: " << cpp_strerror(r) << dendl; + derr << ": failed to retrieve remote tags: " << cpp_strerror(r) << dendl; m_ret_val = r; close_local_image(); return; -- 2.47.3