aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/date.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/coreutils/date.c b/coreutils/date.c
index 3d78a5336..c3478fab1 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -204,11 +204,7 @@ int date_main(int argc UNUSED_PARAM, char **argv)
204 xstat(filename, &statbuf); 204 xstat(filename, &statbuf);
205 ts.tv_sec = statbuf.st_mtime; 205 ts.tv_sec = statbuf.st_mtime;
206#if ENABLE_FEATURE_DATE_NANO 206#if ENABLE_FEATURE_DATE_NANO
207# if defined __GLIBC__ && !defined __UCLIBC__
208 ts.tv_nsec = statbuf.st_mtim.tv_nsec; 207 ts.tv_nsec = statbuf.st_mtim.tv_nsec;
209# else
210 ts.tv_nsec = statbuf.st_mtimensec;
211# endif
212#endif 208#endif
213 } else { 209 } else {
214#if ENABLE_FEATURE_DATE_NANO 210#if ENABLE_FEATURE_DATE_NANO