BUG/MINOR: payload: Add volatile flag to smp_fetch_req_ssl_ec_ext

This bug was introduced in 5fc7d7e. No backport to 1.5 needed.

Signed-off-by: Nenad Merdanovic <nmerdan@anine.io>
This commit is contained in:
Nenad Merdanovic 2015-07-15 12:51:11 +02:00 committed by Willy Tarreau
parent d7c7475ad6
commit 8a39a1fcc3

View File

@ -161,6 +161,7 @@ smp_fetch_req_ssl_ec_ext(const struct arg *args, struct sample *smp, const char
if (ext_type == 10) { if (ext_type == 10) {
smp->type = SMP_T_BOOL; smp->type = SMP_T_BOOL;
smp->data.uint = 1; smp->data.uint = 1;
smp->flags = SMP_F_VOLATILE;
return 1; return 1;
} }