[libvirt] [PATCH] storage_backend_rbd: fix typos

Chen Hanxiao chen_han_xiao at 126.com
Wed Aug 24 07:25:49 UTC 2016


From: Chen Hanxiao <chenhanxiao at gmail.com>

s/failed/failed to

Signed-off-by: Chen Hanxiao <chenhanxiao at gmail.com>
---
 src/storage/storage_backend_rbd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/storage/storage_backend_rbd.c b/src/storage/storage_backend_rbd.c
index 9665fbc..4dd4b24 100644
--- a/src/storage/storage_backend_rbd.c
+++ b/src/storage/storage_backend_rbd.c
@@ -894,7 +894,7 @@ virStorageBackendRBDSnapshotProtect(rbd_image_t image,
     VIR_DEBUG("Querying if RBD snapshot %s@%s is protected", imgname, snapname);
 
     if ((r = rbd_snap_is_protected(image, snapname, &protected)) < 0) {
-        virReportSystemError(-r, _("failed verify if RBD snapshot %s@%s "
+        virReportSystemError(-r, _("failed to verify if RBD snapshot %s@%s "
                                    "is protected"), imgname, snapname);
         goto cleanup;
     }
@@ -904,7 +904,7 @@ virStorageBackendRBDSnapshotProtect(rbd_image_t image,
                   imgname, snapname);
 
         if ((r = rbd_snap_protect(image, snapname)) < 0) {
-            virReportSystemError(-r, _("failed protect RBD snapshot %s@%s"),
+            virReportSystemError(-r, _("failed to protect RBD snapshot %s@%s"),
                                        imgname, snapname);
             goto cleanup;
         }
-- 
1.8.3.1





More information about the libvir-list mailing list