commit | 329f4b4f2f6cf66a87a71f4412b16a09074ed0a8 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed May 04 20:05:55 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri May 06 18:13:36 2022 +0200 |
tree | f3d3901ce1580717652075010bf12c77655ac21c | |
parent | cb1b4ed7b654e8ad050cfcdf91dc7c23508dd770 [diff] |
CLEANUP: ssl/cli: use a local context for "set ssl cert" The command doesn't really need any storage since there's only a parser, but since it used this context, there might have been plans for extension, so better continue with a persistent one. Only old_ckchs, new_ckchs, and path were being used from the appctx's ssl context. There ones moved to the local definition, and the two former ones were removed from the appctx since not used anymore.