Skip to content

Commit 0a8f82c

Browse files
committed
Merge branch 'louissobel-fix-getMaxSCOLength-MQSCO_LENGTH_7'
2 parents 820a4af + d6ac50b commit 0a8f82c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ibmmq/mqiMQCNO.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,9 @@ size_t getMaxCDLength() {
180180
181181
size_t getMaxSCOLength() {
182182
size_t l;
183-
#if defined(MQSCO_VERSION_6)
183+
#if defined(MQSCO_VERSION_7)
184+
l = MQSCO_LENGTH_7;
185+
#elif defined(MQSCO_VERSION_6)
184186
l = MQSCO_LENGTH_6;
185187
#else
186188
l = MQSCO_LENGTH_5; // The minimum supported here

0 commit comments

Comments
 (0)