diff options
author | Alan Conway <aconway@apache.org> | 2006-11-17 20:30:42 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-11-17 20:30:42 +0000 |
commit | d386f860a3404ec9735dab2730f8ed683446838c (patch) | |
tree | 2980f35a6add967ab376a08fad7cdef4acff5933 /cpp/src/qpid/posix/check.cpp | |
parent | bf74286e6a5eba055fd8bf9410c325205b8595d5 (diff) | |
download | qpid-python-d386f860a3404ec9735dab2730f8ed683446838c.tar.gz |
Patch from Andrew Stitcher to fix APR #include using apr-config.
Fixed build problems with USE_APR= - builds OK but broker non-functional.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@476303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/posix/check.cpp')
-rw-r--r-- | cpp/src/qpid/posix/check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/posix/check.cpp b/cpp/src/qpid/posix/check.cpp index 3470906639..2ef52f68b7 100644 --- a/cpp/src/qpid/posix/check.cpp +++ b/cpp/src/qpid/posix/check.cpp @@ -25,7 +25,7 @@ namespace qpid { namespace sys { -std::string strError() { +std::string errnoToString() { char buf[512]; return strerror_r(errno, buf, sizeof(buf)); } |