We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 402ca9a commit 652bee9Copy full SHA for 652bee9
go.mod
@@ -0,0 +1 @@
1
+module github.com/ibm-messaging/mq-golang
ibmmq/mqiMQCNO.go
@@ -36,13 +36,15 @@ void freeCCDTUrl(MQCNO *mqcno) {
36
37
void setCCDTUrl(MQCNO *mqcno, PMQCHAR url, MQLONG length) {
38
#if defined(MQCNO_VERSION_6) && MQCNO_CURRENT_VERSION >= MQCNO_VERSION_6
39
+ mqcno->Version = MQCNO_VERSION_6;
40
mqcno->CCDTUrlOffset = 0;
41
mqcno->CCDTUrlPtr = NULL;
42
mqcno->CCDTUrlLength = length;
43
if (url != NULL) {
44
mqcno->CCDTUrlPtr = url;
45
}
46
#else
47
+ mqcno->Version = MQCNO_CURRENT_VERSION;
48
49
free(url);
50
0 commit comments