PERFORCE change 184227 for review

Niels Heinen niels at FreeBSD.org
Mon Sep 27 11:58:52 UTC 2010


http://p4web.freebsd.org/@@184227?ac=10

Change 184227 by niels at niels_devbsd on 2010/09/27 11:58:22

	Fixed compilation error caused by two small typo's
	Approved by:	rwatson

Affected files ...

.. //depot/projects/trustedbsd/capabilities/src/usr.bin/gzip/gzip.c#13 edit

Differences ...

==== //depot/projects/trustedbsd/capabilities/src/usr.bin/gzip/gzip.c#13 (text+ko) ====

@@ -1093,8 +1093,8 @@
 	if (fchmod(fd, sb.st_mode) < 0)
 		maybe_warn("couldn't fchmod: %s", file);
 
-	TIMESPEC_TO_TIMEVAL(&times[0], &sb.st_atim);
-	TIMESPEC_TO_TIMEVAL(&times[1], &sb.st_mtim);
+	TIMESPEC_TO_TIMEVAL(&times[0], &sb.st_atimespec);
+	TIMESPEC_TO_TIMEVAL(&times[1], &sb.st_mtimespec);
 	if (futimes(fd, times) < 0)
 		maybe_warn("couldn't utimes: %s", file);
 


More information about the p4-projects mailing list