date: trivial fix - was reading seconds into nanoseconds field! DOH

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/coreutils/date.c b/coreutils/date.c
index c3478fa..8f9aff8 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -210,7 +210,7 @@
 #if ENABLE_FEATURE_DATE_NANO
 		clock_gettime(CLOCK_REALTIME, &ts);
 #else
-		time(&ts.tv_nsec);
+		time(&ts.tv_sec);
 #endif
 	}
 	localtime_r(&ts.tv_sec, &tm_time);