[libvirt PATCH] qemu_block: fix copy&paste typo in SSH protocol

Pavel Hrdina posted 1 patch 3 years ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/c369a158be6c3d587f621a43fadb5916bda7e92d.1618828213.git.phrdina@redhat.com
src/qemu/qemu_block.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[libvirt PATCH] qemu_block: fix copy&paste typo in SSH protocol
Posted by Pavel Hrdina 3 years ago
Fixes: caf71b64fe6989116316b966fda119cd3e47f485
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
---
 src/qemu/qemu_block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/qemu/qemu_block.c b/src/qemu/qemu_block.c
index 6845e25176..a972e1e368 100644
--- a/src/qemu/qemu_block.c
+++ b/src/qemu/qemu_block.c
@@ -965,7 +965,7 @@ qemuBlockStorageSourceGetSshProps(virStorageSource *src)
 
     if (src->nhosts != 1) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("sheepdog protocol accepts only one host"));
+                       _("ssh protocol accepts only one host"));
         return NULL;
     }
 
-- 
2.30.2

Re: [libvirt PATCH] qemu_block: fix copy&paste typo in SSH protocol
Posted by Ján Tomko 3 years ago
On a Monday in 2021, Pavel Hrdina wrote:
>Fixes: caf71b64fe6989116316b966fda119cd3e47f485
>Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
>---
> src/qemu/qemu_block.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano