From 2153f7c9b30be64795ebd0dcacc3894b5d3e6577 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Mon, 3 Sep 2018 15:04:12 -0400 Subject: [PATCH] Remove unused imports --- client/http_client.c | 1 - common/http_types.c | 1 - common/socket_helper.c | 1 - 3 files changed, 3 deletions(-) diff --git a/client/http_client.c b/client/http_client.c index 7ca330a..0ed37a5 100644 --- a/client/http_client.c +++ b/client/http_client.c @@ -26,7 +26,6 @@ int main(int argc, char* argv[]) { printf("%s", PORT_ERROR); } get_parts(dest, path_buffer, host_buffer); - printf("%s\n%s\n", path_buffer, host_buffer); struct http_message req = build_basic_request("GET", host_buffer, path_buffer, port_num); struct response_info res; enum socket_read_result read_result = send_request(req, &res); diff --git a/common/http_types.c b/common/http_types.c index ae936db..0bf4275 100644 --- a/common/http_types.c +++ b/common/http_types.c @@ -1,7 +1,6 @@ #include "http_types.h" #include #include -#include #include #include diff --git a/common/socket_helper.c b/common/socket_helper.c index f0fc2da..f4b8fcd 100644 --- a/common/socket_helper.c +++ b/common/socket_helper.c @@ -2,7 +2,6 @@ #include "socket_helper.h" #include #include -#include #include #include