git: e8fcdf9de5d3 - stable/12 - isci(4): Remove a double word in an error message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sun, 10 Apr 2022 05:54:42 UTC
The branch stable/12 has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=e8fcdf9de5d3a75f05a196d267508b0785b253d9

commit e8fcdf9de5d3a75f05a196d267508b0785b253d9
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-03 14:07:20 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-10 05:54:28 +0000

    isci(4): Remove a double word in an error message
    
    - s/is is/is/
    
    (cherry picked from commit 756220b5152526a5a89ca16df31d8acf0a7795bb)
---
 sys/dev/iscsi/iscsi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;