History Of Ticket 04c5fb844986b09a

Artifacts Associated With Ticket 04c5fb844986b09a

  1. Ticket change [0321699555] (rid 4296) by anonymous on 2026-05-04 11:04:53:

    1. foundin initialized to: "2.0"
    2. 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;
          }
      ```
      
    3. login: "anonymous"
    4. mimetype: "text/x-markdown"
    5. severity initialized to: "Important"
    6. status initialized to: "Open"
    7. title initialized to: "tls::status -local does not work anymore"
    8. type initialized to: "Code Defect"
  2. Ticket change [bfd7fc6b38] (rid 4303) by bohagan on 2026-05-17 19:06:03:

    1. icomment: "Should be fixed in commit [085e10e8ba66d8c1]."
    2. login: "bohagan"
    3. mimetype: "text/x-fossil-plain"
    4. priority changed to: "Immediate"
    5. resolution changed to: "Fixed"
  3. Ticket change [0dc76ede3c] (rid 4319) by bohagan on 2026-06-07 19:47:01:

    1. icomment: "Fixed, no reported occurrence."
    2. login: "bohagan"
    3. mimetype: "text/x-markdown"
    4. status changed to: "Closed"