svn commit: r332621 - stable/11/sys/dev/iscsi

Edward Tomasz Napierala trasz at FreeBSD.org
Mon Apr 16 17:22:52 UTC 2018


Author: trasz
Date: Mon Apr 16 17:22:51 2018
New Revision: 332621
URL: https://svnweb.freebsd.org/changeset/base/332621

Log:
  MFC r330937:
  
  Fix typo in a warning message.

Modified:
  stable/11/sys/dev/iscsi/iscsi.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/iscsi/iscsi.c
==============================================================================
--- stable/11/sys/dev/iscsi/iscsi.c	Mon Apr 16 17:22:09 2018	(r332620)
+++ stable/11/sys/dev/iscsi/iscsi.c	Mon Apr 16 17:22:51 2018	(r332621)
@@ -1279,10 +1279,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