- Fix #741: log message for dnstap socket connection is more clear.

git-svn-id: file:///svn/unbound/trunk@3612 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2016-01-27 17:12:26 +00:00
parent 7ca8dbf51f
commit 8c2a28adbc
2 changed files with 3 additions and 1 deletions

View File

@ -128,7 +128,8 @@ dt_create(const char *socket_path, unsigned num_workers)
struct fstrm_writer *fw; struct fstrm_writer *fw;
struct fstrm_writer_options *fwopt; struct fstrm_writer_options *fwopt;
verbose(VERB_OPS, "opening dnstap socket %s", socket_path); verbose(VERB_OPS, "attempting to connect to dnstap socket %s",
socket_path);
log_assert(socket_path != NULL); log_assert(socket_path != NULL);
log_assert(num_workers > 0); log_assert(num_workers > 0);

View File

@ -1,5 +1,6 @@
27 January 2016: Wouter 27 January 2016: Wouter
- Made netbsd sendmsg test nonfatal, in case of false positives. - Made netbsd sendmsg test nonfatal, in case of false positives.
- Fix #741: log message for dnstap socket connection is more clear.
26 January 2016: Wouter 26 January 2016: Wouter
- Fix #734: chown the pidfile if it resides inside the chroot. - Fix #734: chown the pidfile if it resides inside the chroot.