diff options
author | trasz <trasz@FreeBSD.org> | 2016-05-19 14:45:34 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2016-05-19 14:45:34 +0000 |
commit | 74b36c8c395dcfaedcdc81f3dd340587af080f97 (patch) | |
tree | 02336d2852e660d0c9d3b8838ea4bb52e025c1ef /usr.sbin/ctld | |
parent | 1388e1c8ce780466fd48f189a391ced4702038f8 (diff) | |
download | FreeBSD-src-74b36c8c395dcfaedcdc81f3dd340587af080f97.zip FreeBSD-src-74b36c8c395dcfaedcdc81f3dd340587af080f97.tar.gz |
Fix error message.
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'usr.sbin/ctld')
-rw-r--r-- | usr.sbin/ctld/discovery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ctld/discovery.c b/usr.sbin/ctld/discovery.c index d7d843e..c5aea6f 100644 --- a/usr.sbin/ctld/discovery.c +++ b/usr.sbin/ctld/discovery.c @@ -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); } |