summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
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: