From bc7cc845a82203f50e3fc5c1bd0dca01571749b9 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 10 Feb 2021 10:47:46 +0100 Subject: [PATCH] load_config(): Properly parse the client-tag-lifetime directive Previously it was not accepted as an obsolete hash value was being used. Reported by: Joshua Rogers (Opera) --- loadcfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loadcfg.c b/loadcfg.c index dbed0a38..79dad3c5 100644 --- a/loadcfg.c +++ b/loadcfg.c @@ -140,7 +140,7 @@ static struct file_list *current_configfile = NULL; #define hash_cipher_list 1225729316U /* "cipher-list" */ #define hash_client_header_order 2701453514U /* "client-header-order" */ #define hash_client_specific_tag 3353703383U /* "client-specific-tag" */ -#define hash_client_tag_lifetime 647957580U /* "client-tag-lifetime" */ +#define hash_client_tag_lifetime 3239141416U /* "client-tag-lifetime" */ #define hash_compression_level 2464423563U /* "compression-level" */ #define hash_confdir 1978389U /* "confdir" */ #define hash_connection_sharing 1348841265U /* "connection-sharing" */ -- 2.39.2