TYPO: fix error strings to "trying TO send ..."

This commit is contained in:
Ronnie Sahlberg
2011-04-06 17:46:59 +10:00
parent e93ad2f039
commit bceb3d058d
2 changed files with 4 additions and 4 deletions

View File

@@ -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;
}

View File

@@ -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;
}