From 9ed48eb03b550cad6cc8ebbc42806163851788cf Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 16 Nov 2013 15:23:27 +0100 Subject: [PATCH] BB#106: remove now unused extract_ssl_url. Signed-off-by: Michael Adam (cherry picked from commit 0f18e4fc3a1205d5abd7f38c984b2dc707dc46c9) --- src/reqs.c | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/src/reqs.c b/src/reqs.c index b4f124a..4f083cc 100644 --- a/src/reqs.c +++ b/src/reqs.c @@ -243,31 +243,6 @@ ERROR_EXIT: return -1; } -/* - * Extract the URL from a SSL connection. - */ -static int extract_ssl_url (const char *url, struct request_s *request) -{ - request->host = (char *) safemalloc (strlen (url) + 1); - if (!request->host) - return -1; - - if (sscanf (url, "%[^:]:%hu", request->host, &request->port) == 2) ; - else if (sscanf (url, "%s", request->host) == 1) - request->port = HTTP_PORT_SSL; - else { - log_message (LOG_ERR, "extract_ssl_url: Can't parse URL."); - - safefree (request->host); - return -1; - } - - /* Remove the username/password if they're present */ - strip_username_password (request->host); - - return 0; -} - /* * Create a connection for HTTP connections. */