* lib/stat-time.h: Fix reference regarding st_ctime on Windows.
* tests/test-utimens-common.h: Add reference regarding st_ctime on
Windows.
+2017-04-23 Bruno Haible <bruno@clisp.org>
+
+ stat-time: Update comments.
+ * lib/stat-time.h: Fix reference regarding st_ctime on Windows.
+ * tests/test-utimens-common.h: Add reference regarding st_ctime on
+ Windows.
+
2017-04-01 Bruno Haible <bruno@clisp.org>
glob: Fix more memory leaks.
#elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
/* Native Windows platforms (but not Cygwin) put the "file creation
time" in st_ctime (!). See
- <http://msdn2.microsoft.com/de-de/library/14h5k7ff(VS.80).aspx>. */
+ <https://msdn.microsoft.com/en-us/library/14h5k7ff(VS.80).aspx>. */
t.tv_sec = st->st_ctime;
t.tv_nsec = 0;
#else
# if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__
/* Skip ctime tests on native Windows, since it is either a copy of
mtime or birth time (depending on the file system), rather than a
- properly tracked change time. */
+ properly tracked change time. See
+ <https://msdn.microsoft.com/en-us/library/14h5k7ff(VS.80).aspx>. */
# define check_ctime 0
# else
# define check_ctime 1