diff --git a/ChangeLog b/ChangeLog index 715d69b..0ae86bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -27,6 +27,8 @@ Changes between 1.6.8 and the master branch - Tie Access-Request log lines to response log lines (RADSECPROXY-60). - Take lock on realm refcount before updating it (RADSECPROXY-77). - Fix a couple of memory leaks and NULL ptr derefs in error cases. + - Don't forget about good dynamically discovered (TLS) connections + (RADSECPROXY-69). 2016-09-21 1.6.8 Bug fixes: diff --git a/radsecproxy.c b/radsecproxy.c index 67e8839..ef1d710 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -707,7 +707,7 @@ int hasdynamicserver(struct list *srvconfs) { struct list_node *entry; for (entry = list_first(srvconfs); entry; entry = list_next(entry)) - if (((struct clsrvconf *)entry->data)->dynamiclookupcommand) + if (((struct clsrvconf *)entry->data)->servers->dynamiclookuparg) return 1; return 0; }