summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/Util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/Util.cpp')
-rw-r--r--cpp/src/IceSSL/Util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/Util.cpp b/cpp/src/IceSSL/Util.cpp
index 19713f79364..f87e361c194 100644
--- a/cpp/src/IceSSL/Util.cpp
+++ b/cpp/src/IceSSL/Util.cpp
@@ -579,7 +579,7 @@ loadKeychainItems(const string& file, SecExternalItemType type, SecKeychainRef k
throw CertificateReadException(__FILE__, __LINE__, os.str());
}
- if(type != kSecItemTypeUnknown && importType != type)
+ if(type != kSecItemTypeUnknown && importType != kSecItemTypeAggregate && importType != type)
{
CFRelease(items);
ostringstream os;