| 2723 | } |
| 2724 | |
| 2725 | int updateRequirePass(sds val, sds prev, const char **err) { |
| 2726 | UNUSED(prev); |
| 2727 | UNUSED(err); |
| 2728 | /* The old "requirepass" directive just translates to setting |
| 2729 | * a password to the default user. The only thing we do |
| 2730 | * additionally is to remember the cleartext password in this |
| 2731 | * case, for backward compatibility with Redis <= 5. */ |
| 2732 | ACLUpdateDefaultUserPassword(val); |
| 2733 | return 1; |
| 2734 | } |
| 2735 | |
| 2736 | #ifdef USE_OPENSSL |
| 2737 | static int updateTlsCfg(char *val, char *prev, const char **err) { |
nothing calls this directly
no test coverage detected