From 03d33627e9341cc161c459d4a557c547cade28af Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Fri, 7 Apr 2017 12:36:53 +0200 Subject: Rewrite a nonsensical comment. --- src/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index f69f4e3..8317afa 100644 --- a/src/main.c +++ b/src/main.c @@ -265,9 +265,9 @@ int main(int argc, char **argv) break; // The socket is non-blocking, so wait for incoming data with - // select (not recvfrom). Furthermore, select will return if - // gets interrupted by a signal, which is main loop breaking - // can be easily implemented. + // select (not recvfrom). Furthermore, select returns if it's + // interrupted by a signal, which makes breaking the main loop + // easy to implement. rv = select(server_sockfd + 1, &readfds, NULL, NULL, NULL); if (rv == -1 && errno == EINTR) { interrupted_select: -- cgit