-
Notifications
You must be signed in to change notification settings - Fork 63
Description
L.S.
I get the following error:
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\[email protected]\ibmmq\mqiMQSCO.go: In function
'setScoKeyRepoPassword':
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\[email protected]\ibmmq\mqiMQSCO.go:41:7: error:
'keyRepoPasswordPtr' undeclared (first use in this function); did you mean 'keyRepoPassword'?
if (keyRepoPasswordPtr != NULL) {
^~~~~~~~~~~~~~~~~~
keyRepoPassword
C:\Users\userid\go\pkg\mod\github.com\ibm-messaging\mq-golang\[email protected]\ibmmq\mqiMQSCO.go:41:7: note: each undeclared identifier is reported only once for each function it appears in
And this is the code is use:
cno := ibmmq.NewMQCNO()
cno.Options = ibmmq.MQCNO_CLIENT_BINDING
qMgrObject, err := ibmmq.Conn(qMgrName,cno)
What is missing?
Erwin