From 1fbc48f855b42ae101406665f2f02788a19e8385 Mon Sep 17 00:00:00 2001 From: Tom Wilkie Date: Thu, 28 May 2015 09:41:51 +0000 Subject: [PATCH] Remove sleep 1 from qotd server. --- experimental/example/qotd/qotd.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/experimental/example/qotd/qotd.c b/experimental/example/qotd/qotd.c index 533a7eee3..d61314966 100644 --- a/experimental/example/qotd/qotd.c +++ b/experimental/example/qotd/qotd.c @@ -19,8 +19,6 @@ void *thread_func(void *sock) { return; } - sleep(1); - clientfd = socket(AF_INET, SOCK_STREAM, 0); if (clientfd < 0) { perror("ERROR opening socket");