Merge branch 'et/spell-poll-infinite-with-minus-one-only' into maint

* et/spell-poll-infinite-with-minus-one-only:
  upload-pack: keep poll(2)'s timeout to -1
This commit is contained in:
Junio C Hamano 2014-09-19 14:05:13 -07:00
Родитель 08fd8a055c 6c71f8b0d3
Коммит b8f7239058
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -167,7 +167,9 @@ static void create_pack_file(void)
if (!pollsize)
break;
ret = poll(pfd, pollsize, 1000 * keepalive);
ret = poll(pfd, pollsize,
keepalive < 0 ? -1 : 1000 * keepalive);
if (ret < 0) {
if (errno != EINTR) {
error("poll failed, resuming: %s",