Artifacts Associated With Ticket 539d25f105a84615
Ticket change [ea32995d09] (rid 1602) by doofus on 2023-11-20 02:46:47:
- foundin initialized to: "1.7.22"
- icomment:
Compiler warns of the `isServer` function parameter being unused. Seems like it can, indeed, be safely removed: ```patch --- tls.c 2020-10-12 16:39:22.000000000 -0400 +++ tls.c 2023-11-19 21:30:03.357601000 -0500 @@ -62,5 +62,5 @@ Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); -static SSL_CTX *CTX_Init(State *statePtr, int isServer, int proto, char *key, +static SSL_CTX *CTX_Init(State *statePtr, int proto, char *key, char *certfile, unsigned char *key_asn1, unsigned char *cert_asn1, int key_asn1_len, int cert_asn1_len, char *CAdir, char *CAfile, @@ -897,5 +897,5 @@ ctx = ((State *)Tcl_GetChannelInstanceData(chan))->ctx; } else { - if ((ctx = CTX_Init(statePtr, server, proto, keyfile, certfile, key, + if ((ctx = CTX_Init(statePtr, proto, keyfile, certfile, key, cert, key_len, cert_len, CAdir, CAfile, ciphers, DHparams)) == (SSL_CTX*)0) { @@ -1067,8 +1067,7 @@ static SSL_CTX * -CTX_Init(statePtr, isServer, proto, keyfile, certfile, key, cert, +CTX_Init(statePtr, proto, keyfile, certfile, key, cert, key_len, cert_len, CAdir, CAfile, ciphers, DHparams) State *statePtr; - int isServer; int proto; char *keyfile; ```
- login: "doofus"
- mimetype: "text/x-markdown"
- private_contact initialized to: "97c7e5a24584ec1fd28bf5cc453cd06585a9a915"
- severity initialized to: "Critical"
- status initialized to: "Open"
- title initialized to: "The isServer argument of CTX_Init() is unused"
- type initialized to: "Code Defect"
Ticket change [63a8a21de0] (rid 3556) by bohagan on 2024-05-28 00:36:03:
- icomment: "This is OBE by the changes in [f9da715266587d3f]."
- login: "bohagan"
- mimetype: "text/x-fossil-plain"
- priority changed to: "Immediate"
- resolution changed to: "Open"
- status changed to: "Closed"