diff options
author | Linus Nordberg <linus@nordu.net> | 2016-03-09 12:15:56 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2016-09-21 13:15:11 +0200 |
commit | eb85a9842b4dbc5769f407a7253a276afb1f1ae4 (patch) | |
tree | 5772d1d8493cba0bc965003e145977636a04a901 /radsecproxy.c | |
parent | 668f81b43785cd4181ffc1ca898f6301100b094f (diff) |
Use ERR_remove_thread_state() instead of ERR_remove_state().
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 1590e65..7735a5c 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1983,7 +1983,7 @@ errexit: freeclsrvconf(conf); } freeserver(server, 1); - ERR_remove_state(0); + ERR_remove_thread_state(0); return NULL; } |