Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Apr 2018 17:22:52 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r332621 - stable/11/sys/dev/iscsi
Message-ID:  <201804161722.w3GHMqsF031385@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:
 		/*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804161722.w3GHMqsF031385>