diff options
author | Manuel Teira Paz <mteira@apache.org> | 2009-03-05 16:12:09 +0000 |
---|---|---|
committer | Manuel Teira Paz <mteira@apache.org> | 2009-03-05 16:12:09 +0000 |
commit | dd2b4fc0b6a0b9fe7146b6d131718e1efc7a5a45 (patch) | |
tree | ede536b7a912921e9ef8383959c8a52f56e0e028 /cpp/src | |
parent | 929a5d81aebf894e30990c0c77994a1e17a13649 (diff) | |
download | qpid-python-dd2b4fc0b6a0b9fe7146b6d131718e1efc7a5a45.tar.gz |
Replace PF_LOCAL with PF_UNIX, since it seems to be equivalent, and the
former doesn't exist on Solaris (for instance)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@750489 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/agent/ManagementAgentImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/agent/ManagementAgentImpl.cpp b/cpp/src/qpid/agent/ManagementAgentImpl.cpp index f9b3b7b466..7c70c12213 100644 --- a/cpp/src/qpid/agent/ManagementAgentImpl.cpp +++ b/cpp/src/qpid/agent/ManagementAgentImpl.cpp @@ -151,7 +151,7 @@ void ManagementAgentImpl::init(const client::ConnectionSettings& settings, // TODO: Abstract the socket calls for portability if (extThread) { int pair[2]; - int result = socketpair(PF_LOCAL, SOCK_STREAM, 0, pair); + int result = socketpair(PF_UNIX, SOCK_STREAM, 0, pair); if (result == -1) { return; } |