Artifacts Associated With Ticket 04c5fb844986b09a
Ticket change [0321699555] (rid 4296) by anonymous on 2026-05-04 11:04:53:
- foundin initialized to: "2.0"
- icomment:
``` tls::status sock558d240d7860 success 'peername {} sbits 256 cipher ECDHE-RSA-CHACHA20-POLY1305 verifyResult ok verifyMode {} verifyDepth -1 alpn {} protocol TLSv1.2 signatureHashAlgorithm undefined signatureType undefined' tls::status -local sock558d240d7860 error 'wrong # args: should be "tls::status ?-local? channel"': wrong # args: should be "tls::status ?-local? channel" wrong # args: should be "tls::status ?-local? channel" while executing "tls::status -local sock558d240d7860" invoked from within "catch $line error" ``` The issue seems to be a wrongly placed ! for strcmp in StatusObjCmd(): ```c if (objc < 2 || objc > 3 || (objc == 3 && !strcmp(Tcl_GetString(objv[1]), "-local"))) { Tcl_WrongNumArgs(interp, 1, objv, "?-local? channel"); return TCL_ERROR; } ``` when it should be ``` if (objc < 2 || objc > 3 || (objc == 3 && strcmp(Tcl_GetString(objv[1]), "-local"))) { Tcl_WrongNumArgs(interp, 1, objv, "?-local? channel"); return TCL_ERROR; } ``` - login: "anonymous"
- mimetype: "text/x-markdown"
- severity initialized to: "Important"
- status initialized to: "Open"
- title initialized to: "tls::status -local does not work anymore"
- type initialized to: "Code Defect"
Ticket change [bfd7fc6b38] (rid 4303) by bohagan on 2026-05-17 19:06:03:
- icomment: "Should be fixed in commit [085e10e8ba66d8c1]."
- login: "bohagan"
- mimetype: "text/x-fossil-plain"
- priority changed to: "Immediate"
- resolution changed to: "Fixed"
Ticket change [0dc76ede3c] (rid 4319) by bohagan on 2026-06-07 19:47:01:
- icomment: "Fixed, no reported occurrence."
- login: "bohagan"
- mimetype: "text/x-markdown"
- status changed to: "Closed"