aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-04-03 14:07:20 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-04-10 05:54:28 +0000
commite8fcdf9de5d3a75f05a196d267508b0785b253d9 (patch)
tree72cb8f09655354cc02ea3b218e8dd39937582caa
parent810e7aad1eb03f2796ad7837e8282b4d246b7c1d (diff)
downloadsrc-e8fcdf9de5d3a75f05a196d267508b0785b253d9.tar.gz
src-e8fcdf9de5d3a75f05a196d267508b0785b253d9.zip
isci(4): Remove a double word in an error message
- s/is is/is/ (cherry picked from commit 756220b5152526a5a89ca16df31d8acf0a7795bb)
-rw-r--r--sys/dev/iscsi/iscsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/iscsi/iscsi.c b/sys/dev/iscsi/iscsi.c
index 685b635a4411..d7e826962bca 100644
--- a/sys/dev/iscsi/iscsi.c
+++ b/sys/dev/iscsi/iscsi.c
@@ -1187,7 +1187,7 @@ iscsi_pdu_handle_r2t(struct icl_pdu *response)
off = ntohl(bhsr2t->bhsr2t_buffer_offset);
if (off > csio->dxfer_len) {
ISCSI_SESSION_WARN(is, "target requested invalid offset "
- "%zd, buffer is is %d; reconnecting", off, csio->dxfer_len);
+ "%zd, buffer is %d; reconnecting", off, csio->dxfer_len);
icl_pdu_free(response);
iscsi_session_reconnect(is);
return;