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

Edward Tomasz Napierala trasz at FreeBSD.org
Thu May 19 14:45:35 UTC 2016


Author: trasz
Date: Thu May 19 14:45:34 2016
New Revision: 300210
URL: https://svnweb.freebsd.org/changeset/base/300210

Log:
  Fix error message.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

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

Modified: head/usr.sbin/ctld/discovery.c
==============================================================================
--- head/usr.sbin/ctld/discovery.c	Thu May 19 14:37:24 2016	(r300209)
+++ head/usr.sbin/ctld/discovery.c	Thu May 19 14:45:34 2016	(r300210)
@@ -69,7 +69,7 @@ text_receive(struct connection *conn)
 		    "was %u, is %u", conn->conn_cmdsn, ntohl(bhstr->bhstr_cmdsn));
 	}
 	if (ntohl(bhstr->bhstr_expstatsn) != conn->conn_statsn) {
-		log_errx(1, "received Text PDU with wrong StatSN: "
+		log_errx(1, "received Text PDU with wrong ExpStatSN: "
 		    "is %u, should be %u", ntohl(bhstr->bhstr_expstatsn),
 		    conn->conn_statsn);
 	}
@@ -127,7 +127,7 @@ logout_receive(struct connection *conn)
 		    ntohl(bhslr->bhslr_cmdsn));
 	}
 	if (ntohl(bhslr->bhslr_expstatsn) != conn->conn_statsn) {
-		log_errx(1, "received Logout PDU with wrong StatSN: "
+		log_errx(1, "received Logout PDU with wrong ExpStatSN: "
 		    "is %u, should be %u", ntohl(bhslr->bhslr_expstatsn),
 		    conn->conn_statsn);
 	}


More information about the svn-src-head mailing list