From bceb3d058d3b7bac306f61854fcfd1c2e8609175 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Wed, 6 Apr 2011 17:46:59 +1000 Subject: [PATCH] TYPO: fix error strings to "trying TO send ..." --- lib/nop.c | 4 ++-- lib/task_mgmt.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/nop.c b/lib/nop.c index 152ef53..5fe6910 100644 --- a/lib/nop.c +++ b/lib/nop.c @@ -26,8 +26,8 @@ iscsi_nop_out_async(struct iscsi_context *iscsi, iscsi_command_cb cb, struct iscsi_pdu *pdu; if (iscsi->is_loggedin == 0) { - iscsi_set_error(iscsi, "trying send nop-out while not logged " - "in"); + iscsi_set_error(iscsi, "trying to send nop-out while not " + "logged in"); return -1; } diff --git a/lib/task_mgmt.c b/lib/task_mgmt.c index 54535e9..31fe44f 100644 --- a/lib/task_mgmt.c +++ b/lib/task_mgmt.c @@ -29,8 +29,8 @@ iscsi_task_mgmt_async(struct iscsi_context *iscsi, struct iscsi_pdu *pdu; if (iscsi->is_loggedin == 0) { - iscsi_set_error(iscsi, "trying send task-mgmt while not logged " - "in"); + iscsi_set_error(iscsi, "trying to send task-mgmt while not " + "logged in"); return -1; }