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");
}