mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
BUG/MINOR: ssl: fix error message of tune.ssl.certificate-compression
tune.ssl-certificate-compression expects 'auto' but not 'on'. Could be backported if the previous patch is backported.
This commit is contained in:
parent
6995fe60c3
commit
bbab0ac4d0
1 changed files with 1 additions and 1 deletions
|
|
@ -510,7 +510,7 @@ static int ssl_parse_certificate_compression(char **args, int section_type, stru
|
|||
else if (strcmp(args[1], "off") == 0)
|
||||
global_ssl.certificate_compression = 0;
|
||||
else {
|
||||
memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); return -1;
|
||||
memprintf(err, "'%s' expects either 'auto' or 'off' but got '%s'.", args[0], args[1]); return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue