summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorCarl C. Trieloff <cctrieloff@apache.org>2008-07-31 21:43:37 +0000
committerCarl C. Trieloff <cctrieloff@apache.org>2008-07-31 21:43:37 +0000
commitb9d38e9f08908220f9bbf804a45656e4205e3dfd (patch)
tree1ad365b218eb915fa1a3a07c550ec85974314358 /cpp
parent79156ac0efe07d93e4bdc92bbcf8b6eb6dee7c62 (diff)
downloadqpid-python-b9d38e9f08908220f9bbf804a45656e4205e3dfd.tar.gz
attempt to fix spec file
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@681509 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/qpidc.spec.in3
-rw-r--r--cpp/src/qpid/acl/Acl.cpp2
2 files changed, 4 insertions, 1 deletions
diff --git a/cpp/qpidc.spec.in b/cpp/qpidc.spec.in
index 8521d57ecf..72570c5671 100644
--- a/cpp/qpidc.spec.in
+++ b/cpp/qpidc.spec.in
@@ -144,6 +144,8 @@ make check
%_libdir/libqpidbroker.so.0.1.0
%_libdir/libqpidcluster.so.0
%_libdir/libqpidcluster.so.0.1.0
+%_libdir/libqpidacl.so.0
+%_libdir/libqpidacl.so.0.1.0
%_sbindir/%{qpidd}
%config(noreplace) %_sysconfdir/qpidd.conf
%config(noreplace) %_sysconfdir/sasl2/qpidd.conf
@@ -159,6 +161,7 @@ make check
%defattr(-,root,root,-)
%_libdir/libqpidbroker.so
%_libdir/libqpidcluster.so
+%_libdir/libqpidacl.so
%_includedir/qpid/broker
%post -p /sbin/ldconfig
diff --git a/cpp/src/qpid/acl/Acl.cpp b/cpp/src/qpid/acl/Acl.cpp
index 77674a2299..7fceba8b1a 100644
--- a/cpp/src/qpid/acl/Acl.cpp
+++ b/cpp/src/qpid/acl/Acl.cpp
@@ -79,7 +79,7 @@ using namespace std;
switch (aclreslt)
{
case ALLOWLOG:
- QPID_LOG(info, "ACL Allow log id:" << id <<" action:" << printAction(action) << " ObjectType:" << printObjType(objType) << " Name:" << name );
+ QPID_LOG(info, "ACL Allow id:" << id <<" action:" << printAction(action) << " ObjectType:" << printObjType(objType) << " Name:" << name );
case ALLOW:
return true;
case DENYNOLOG: