[git commit master] date: make FEATURE_NANO compile on glibc systems

Denys Vlasenko vda.linux at googlemail.com
Sun Jun 6 15:53:48 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=f2da16f451812f40bed51fd60a304df3d7dfc1bd
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 coreutils/date.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/coreutils/date.c b/coreutils/date.c
index c599df7..3d78a53 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -204,7 +204,11 @@ int date_main(int argc UNUSED_PARAM, char **argv)
 		xstat(filename, &statbuf);
 		ts.tv_sec = statbuf.st_mtime;
 #if ENABLE_FEATURE_DATE_NANO
-		ts.tv_nsec = statbuf.st_mtimensec; //or st_atim.tv_nsec?
+# if defined __GLIBC__ && !defined __UCLIBC__
+		ts.tv_nsec = statbuf.st_mtim.tv_nsec;
+# else
+		ts.tv_nsec = statbuf.st_mtimensec;
+# endif
 #endif
 	} else {
 #if ENABLE_FEATURE_DATE_NANO
-- 
1.6.3.3



More information about the busybox-cvs mailing list