From f90e9e33dfab480a8eb376c189e157bf91f14695 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Wed, 25 Jun 2014 16:04:54 -0400 Subject: [PATCH] The variable name is "max_response_timeouts" --- src/main/realms.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/realms.c b/src/main/realms.c index e594d1a..1102956 100644 --- a/src/main/realms.c +++ b/src/main/realms.c @@ -691,8 +691,8 @@ int realm_home_server_add(home_server_t *home, CONF_SECTION *cs, int dual) FR_TIMEVAL_BOUND_CHECK("response_window", &home->response_window, <=, main_config.max_request_time, 0); - FR_INTEGER_BOUND_CHECK("response_timeouts", home->response_timeouts, >=, 1); - FR_INTEGER_BOUND_CHECK("response_timeouts", home->response_timeouts, <=, 1000); + FR_INTEGER_BOUND_CHECK("response_timeouts", home->max_response_timeouts, >=, 1); + FR_INTEGER_BOUND_CHECK("response_timeouts", home->max_response_timeouts, <=, 1000); /* * Track the minimum response window, so that we can -- 2.1.4