summaryrefslogtreecommitdiff
path: root/lib/stat-time.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2017-04-23 13:18:16 +0200
committerBruno Haible <bruno@clisp.org>2017-04-23 13:18:16 +0200
commit430c2ba5135a8185c372155618fbcfe21fbb7722 (patch)
treea28e5498efca904ed5e4f6faefc30a78f508ebcc /lib/stat-time.h
parent1540f3441555f756558f3a18e5f68914c0b72227 (diff)
downloadgnulib-430c2ba5135a8185c372155618fbcfe21fbb7722.tar.gz
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.
Diffstat (limited to 'lib/stat-time.h')
-rw-r--r--lib/stat-time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stat-time.h b/lib/stat-time.h
index 47469892ee..154d62a01f 100644
--- a/lib/stat-time.h
+++ b/lib/stat-time.h
@@ -169,7 +169,7 @@ get_stat_birthtime (struct stat const *st)
#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