respondd: fix double assignment of variable

This commit is contained in:
lemoer 2016-08-13 16:47:36 +02:00
parent 9517a0f698
commit f37941ecf3
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ static bool accept_request(struct request_schedule *schedule, int sock,
.msg_controllen = sizeof(control)
};
input_bytes = input_bytes = recvmsg(sock, &mh, 0);
input_bytes = recvmsg(sock, &mh, 0);
// Timeout
if (input_bytes < 0 && errno == EWOULDBLOCK)