=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rsync/io.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/rsync/io.c 2019/06/28 13:35:03 1.18 --- src/usr.bin/rsync/io.c 2020/11/24 16:54:44 1.19 *************** *** 1,4 **** ! /* $Id: io.c,v 1.18 2019/06/28 13:35:03 deraadt Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: io.c,v 1.19 2020/11/24 16:54:44 claudio Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * *************** *** 70,76 **** /* Poll and check for all possible errors. */ ! if ((c = poll(&pfd, 1, POLL_TIMEOUT)) == -1) { ERR("poll"); return 0; } else if (c == 0) { --- 70,76 ---- /* Poll and check for all possible errors. */ ! if ((c = poll(&pfd, 1, poll_timeout)) == -1) { ERR("poll"); return 0; } else if (c == 0) { *************** *** 201,207 **** /* Poll and check for all possible errors. */ ! if ((c = poll(&pfd, 1, POLL_TIMEOUT)) == -1) { ERR("poll"); return 0; } else if (c == 0) { --- 201,207 ---- /* Poll and check for all possible errors. */ ! if ((c = poll(&pfd, 1, poll_timeout)) == -1) { ERR("poll"); return 0; } else if (c == 0) {