svn commit: r264532 - head/usr.sbin/ctld

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Apr 16 11:03:21 UTC 2014


Author: trasz
Date: Wed Apr 16 11:03:21 2014
New Revision: 264532
URL: http://svnweb.freebsd.org/changeset/base/264532

Log:
  Use proper terminology in debug messages.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/ctld/login.c

Modified: head/usr.sbin/ctld/login.c
==============================================================================
--- head/usr.sbin/ctld/login.c	Wed Apr 16 11:01:59 2014	(r264531)
+++ head/usr.sbin/ctld/login.c	Wed Apr 16 11:03:21 2014	(r264532)
@@ -787,7 +787,7 @@ login_negotiate(struct connection *conn,
 	bool skipped_security;
 
 	if (request == NULL) {
-		log_debugx("beginning parameter negotiation; "
+		log_debugx("beginning operational parameter negotiation; "
 		    "waiting for Login PDU");
 		request = login_receive(conn, false);
 		skipped_security = false;
@@ -813,7 +813,7 @@ login_negotiate(struct connection *conn,
 		    response_keys);
 	}
 
-	log_debugx("parameter negotiation done; "
+	log_debugx("operational parameter negotiation done; "
 	    "transitioning to Full Feature Phase");
 
 	keys_save(response_keys, response);
@@ -987,7 +987,7 @@ login(struct connection *conn)
 		 * but we don't need it.
 		 */
 		log_debugx("authentication not required; "
-		    "transitioning to parameter negotiation");
+		    "transitioning to operational parameter negotiation");
 
 		if ((bhslr->bhslr_flags & BHSLR_FLAGS_TRANSIT) == 0)
 			log_warnx("initiator did not set the \"T\" flag; "


More information about the svn-src-head mailing list