| 2748 | return 1; |
| 2749 | } |
| 2750 | static int updateTlsCfgBool(int val, int prev, const char **err) { |
| 2751 | UNUSED(val); |
| 2752 | UNUSED(prev); |
| 2753 | return updateTlsCfg(NULL, NULL, err); |
| 2754 | } |
| 2755 | |
| 2756 | static int updateTlsCfgInt(long long val, long long prev, const char **err) { |
| 2757 | UNUSED(val); |
nothing calls this directly
no test coverage detected