| 2362 | return 1; |
| 2363 | } |
| 2364 | static int updateTlsCfgBool(int val, int prev, const char **err) { |
| 2365 | UNUSED(val); |
| 2366 | UNUSED(prev); |
| 2367 | return updateTlsCfg(NULL, NULL, err); |
| 2368 | } |
| 2369 | |
| 2370 | static int updateTlsCfgInt(long long val, long long prev, const char **err) { |
| 2371 | UNUSED(val); |
nothing calls this directly
no test coverage detected