mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 21:21:04 +01:00
Correct various log messages.
Submitted by: Mikolaj Golub <to.my.trociny@gmail.com> MFC after: 3 days
This commit is contained in:
parent
96610dd9b6
commit
f3bd74124a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209185
@ -200,7 +200,7 @@ listen_accept(void)
|
||||
|
||||
proto_local_address(conn, laddr, sizeof(laddr));
|
||||
proto_remote_address(conn, raddr, sizeof(raddr));
|
||||
pjdlog_info("Connection from %s to %s.", laddr, raddr);
|
||||
pjdlog_info("Connection from %s to %s.", raddr, laddr);
|
||||
|
||||
/* Error in setting timeout is not critical, but why should it fail? */
|
||||
if (proto_timeout(conn, HAST_TIMEOUT) < 0)
|
||||
@ -286,7 +286,7 @@ listen_accept(void)
|
||||
if (token != NULL && memcmp(token, res->hr_token,
|
||||
sizeof(res->hr_token)) != 0) {
|
||||
pjdlog_error("Token received from %s doesn't match.", raddr);
|
||||
nv_add_stringf(nverr, "errmsg", "Toke doesn't match.");
|
||||
nv_add_stringf(nverr, "errmsg", "Token doesn't match.");
|
||||
goto fail;
|
||||
}
|
||||
/*
|
||||
|
@ -688,7 +688,7 @@ send_thread(void *arg)
|
||||
pjdlog_exit(EX_TEMPFAIL, "Unable to send reply.");
|
||||
}
|
||||
nv_free(nvout);
|
||||
pjdlog_debug(2, "disk: (%p) Moving request to the free queue.",
|
||||
pjdlog_debug(2, "send: (%p) Moving request to the free queue.",
|
||||
hio);
|
||||
nv_free(hio->hio_nv);
|
||||
hio->hio_error = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user