Date: Thu, 19 May 2016 14:45:34 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r300210 - head/usr.sbin/ctld Message-ID: <201605191445.u4JEjYrx091890@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605191445.u4JEjYrx091890>