diff options
| author | Ted Ross <tross@apache.org> | 2011-01-10 18:30:39 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2011-01-10 18:30:39 +0000 |
| commit | 79ad0c1fa9561f8b3a545fc3d9a1ea874c908741 (patch) | |
| tree | 4eb4a58f173c30d17899773dbba4f32fe076923e /qpid/cpp/src/qmf/Schema.cpp | |
| parent | e8baa981acbf7389d26ef0850d109e2ce94b8db0 (diff) | |
| download | qpid-python-79ad0c1fa9561f8b3a545fc3d9a1ea874c908741.tar.gz | |
Fixed a bug in the type-compatibility checker.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1057302 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/Schema.cpp')
| -rw-r--r-- | qpid/cpp/src/qmf/Schema.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qmf/Schema.cpp b/qpid/cpp/src/qmf/Schema.cpp index f25eb4635b..872aad724c 100644 --- a/qpid/cpp/src/qmf/Schema.cpp +++ b/qpid/cpp/src/qmf/Schema.cpp @@ -329,7 +329,7 @@ bool SchemaImpl::isCompatibleType(int qmfType, qpid::types::VariantType qpidType typeValid = true; break; case qpid::types::VAR_MAP: - if (qmfType == SCHEMA_DATA_BOOL) + if (qmfType == SCHEMA_DATA_MAP) typeValid = true; break; case qpid::types::VAR_LIST: |
