display_date() is only used one time, doesn't make sense to make it a function

This commit is contained in:
Björn Ketelaars
2015-09-19 17:23:30 +02:00
parent f9d7f3d5c8
commit f7926b75fc
2 changed files with 1 additions and 7 deletions

View File

@@ -147,11 +147,6 @@ void perform_connection(int listen_socket)
pthread_detach(thread_id);
}
void display_date()
{
info("%s\n", get_date());
}
char *get_date()
{
time_t rawtime;
@@ -216,7 +211,7 @@ void display_info(struct client_data data, char *slug, char *message)
if (slug == NULL)
info("%s\n", message);
else info("Saved to: %s\n", slug);
display_date();
info("%s\n", get_date());
info("Client: %s (%s)\n", data.ip_address, data.hostname);
info("====================================\n");
}

View File

@@ -81,7 +81,6 @@ int check_protocol(char *buffer);
void bind_to_port(int listen_socket, struct sockaddr_in serveraddr);
void error(char *error_code){perror(error_code); exit(1);}
void display_date();
void perform_connection(int listen_socket);
void generate_url(char *buffer, char *slug, size_t slug_length, struct client_data data);
void save_to_file(char *buffer, char *slug, struct client_data data);