Date: Fri, 15 Apr 2022 13:31:34 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: e74c79e48ef1 - releng/13.1 - isci(4): Remove a double word in an error message Message-ID: <202204151331.23FDVYmK093875@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch releng/13.1 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=e74c79e48ef1620b7b5a3c29dd316d30bda55790 commit e74c79e48ef1620b7b5a3c29dd316d30bda55790 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-03 14:07:20 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-15 13:30:13 +0000 isci(4): Remove a double word in an error message - s/is is/is/ Approved by: re@ (gjb) (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 ff3203039d5f..278f275d7309 100644 --- a/sys/dev/iscsi/iscsi.c +++ b/sys/dev/iscsi/iscsi.c @@ -1229,7 +1229,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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204151331.23FDVYmK093875>