Fix typo in libiscsi error message
authorRaphael Norwitz <raphael.norwitz@nutanix.com>
Thu, 11 Jun 2020 00:59:03 +0000 (20:59 -0400)
committerGitHub <noreply@github.com>
Thu, 11 Jun 2020 00:59:03 +0000 (20:59 -0400)
On authentication failure when connecting to an iscsi server, fio will
print "sicsi: failed to connect to LUN : Failed to log in to target.".

This change fixes a typo, changing sicsi to iscsi.

Signed-off-by: Raphael Norwitz <raphael.norwitz@nutanix.com>
engines/libiscsi.c

index 58667fb216102f21bf7ee4bfaedbb2a1799c929a..35761a619f89099520d4f0b37730ed7f7324a42a 100644 (file)
@@ -109,7 +109,7 @@ static int fio_iscsi_setup_lun(struct iscsi_info *iscsi_info,
        if (iscsi_full_connect_sync(iscsi_lun->iscsi,
                                    iscsi_lun->url->portal,
                                    iscsi_lun->url->lun)) {
-               log_err("sicsi: failed to connect to LUN : %s\n",
+               log_err("iscsi: failed to connect to LUN : %s\n",
                        iscsi_get_error(iscsi_lun->iscsi));
                ret = EINVAL;
                goto out;