CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2022/11/02 05:44:19
Modified files: usr.sbin/rpki-client: http.c Log message: Don't free the addrinfo array after connect and refactor http_finish_connect. In http_connect_done() the addrinfo array was freed but this makes it impossible to show the IP address of the connection in log messages. Also refactor http_finish_connect() to call http_connect_failed() instead of doing the same inline. OK tb@