diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2014-04-16 11:03:21 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2014-04-16 11:03:21 +0000 |
commit | 639466801cd8fed602a3c8daa79565cb422cf47a (patch) | |
tree | fd1c1f8741634eb42810c50aad17419d12794841 /usr.sbin/ctld/login.c | |
parent | d6093026ecb8dde06d6ce7acbc4cd1d0f6a037ee (diff) | |
download | src-639466801cd8fed602a3c8daa79565cb422cf47a.tar.gz src-639466801cd8fed602a3c8daa79565cb422cf47a.zip |
Use proper terminology in debug messages.
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=264532
Diffstat (limited to 'usr.sbin/ctld/login.c')
-rw-r--r-- | usr.sbin/ctld/login.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ctld/login.c b/usr.sbin/ctld/login.c index c1a2393344d1..f830d15fc929 100644 --- a/usr.sbin/ctld/login.c +++ b/usr.sbin/ctld/login.c @@ -787,7 +787,7 @@ login_negotiate(struct connection *conn, struct pdu *request) 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, struct pdu *request) 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; " |