svn commit: r330937 - head/sys/dev/iscsi
Edward Tomasz Napierala
trasz at FreeBSD.org
Wed Mar 14 18:27:07 UTC 2018
Author: trasz
Date: Wed Mar 14 18:27:06 2018
New Revision: 330937
URL: https://svnweb.freebsd.org/changeset/base/330937
Log:
Fix typo in a warning message.
MFC after: 2 weeks
Modified:
head/sys/dev/iscsi/iscsi.c
Modified: head/sys/dev/iscsi/iscsi.c
==============================================================================
--- head/sys/dev/iscsi/iscsi.c Wed Mar 14 18:07:40 2018 (r330936)
+++ head/sys/dev/iscsi/iscsi.c Wed Mar 14 18:27:06 2018 (r330937)
@@ -1281,10 +1281,10 @@ iscsi_pdu_handle_async_message(struct icl_pdu *respons
iscsi_session_terminate(is);
break;
case BHSAM_EVENT_TARGET_TERMINATES_CONNECTION:
- ISCSI_SESSION_WARN(is, "target indicates it will drop drop the connection");
+ ISCSI_SESSION_WARN(is, "target indicates it will drop the connection");
break;
case BHSAM_EVENT_TARGET_TERMINATES_SESSION:
- ISCSI_SESSION_WARN(is, "target indicates it will drop drop the session");
+ ISCSI_SESSION_WARN(is, "target indicates it will drop the session");
break;
default:
/*
More information about the svn-src-all
mailing list