BIND 10 master, updated. 29228dab743c022c07585dca775ee732a42b5571 [master] Use AF_UNIX instead of AF_LOCAL (fixes Solaris build)
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Jul 25 20:57:08 UTC 2013
The branch, master has been updated
via 29228dab743c022c07585dca775ee732a42b5571 (commit)
from f0b494fa3a9ead7321864d5f28c81092226fabf0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 29228dab743c022c07585dca775ee732a42b5571
Author: Mukund Sivaraman <muks at isc.org>
Date: Thu Jul 25 21:29:34 2013 +0530
[master] Use AF_UNIX instead of AF_LOCAL (fixes Solaris build)
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/datasrc_clients_mgr.h | 2 +-
.../auth/tests/datasrc_clients_builder_unittest.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/datasrc_clients_mgr.h b/src/bin/auth/datasrc_clients_mgr.h
index a2d3d1f..c84b9c0 100644
--- a/src/bin/auth/datasrc_clients_mgr.h
+++ b/src/bin/auth/datasrc_clients_mgr.h
@@ -407,7 +407,7 @@ private:
int createFds() {
int fds[2];
- int result = socketpair(AF_LOCAL, SOCK_STREAM, 0, fds);
+ int result = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
if (result != 0) {
isc_throw(Unexpected, "Can't create socket pair: " <<
strerror(errno));
diff --git a/src/bin/auth/tests/datasrc_clients_builder_unittest.cc b/src/bin/auth/tests/datasrc_clients_builder_unittest.cc
index 48559ad..a663db6 100644
--- a/src/bin/auth/tests/datasrc_clients_builder_unittest.cc
+++ b/src/bin/auth/tests/datasrc_clients_builder_unittest.cc
@@ -86,7 +86,7 @@ protected:
private:
int generateSockets() {
int pair[2];
- int result = socketpair(AF_LOCAL, SOCK_STREAM, 0, pair);
+ int result = socketpair(AF_UNIX, SOCK_STREAM, 0, pair);
assert(result == 0);
write_end = pair[0];
read_end = pair[1];
More information about the bind10-changes
mailing list