View | Details | Raw Unified | Return to bug 828 | Differences between
and this patch

Collapse All | Expand All

(-)rcp.c (-3 / +3 lines)
Lines 446-454 syserr: Link Here
446
			 * Make it compatible with possible future
446
			 * Make it compatible with possible future
447
			 * versions expecting microseconds.
447
			 * versions expecting microseconds.
448
			 */
448
			 */
449
			(void)snprintf(buf, sizeof(buf), "T%ld 0 %ld 0\n",
449
			(void)snprintf(buf, sizeof(buf), "T%lu 0 %lu 0\n",
450
			    (long)stb.st_mtimespec.tv_sec,
450
			    (u_long) (stb.st_mtime < 0 ? 0 : stb.st_mtime),
451
			    (long)stb.st_atimespec.tv_sec);
451
			    (u_long) (stb.st_atime < 0 ? 0 : stb.st_atime));
452
			(void)write(rem, buf, strlen(buf));
452
			(void)write(rem, buf, strlen(buf));
453
			if (response() < 0)
453
			if (response() < 0)
454
				goto next;
454
				goto next;

Return to bug 828