aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac2
-rw-r--r--src/bindfs.c1
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 838ff28..3cc9056 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-06-05 Martin Pärtel <martin dot partel at gmail dot com>
+
+ * Use `lutimes` when `utimensat` is unavailable, as it is on OS X (#6).
+ * Copy nanoseconds with --ctime-from-mtime if struct stat.st_mtim etc. are
+ present (#16).
+ * Released 1.12.4
+
2013-09-23 Martin Pärtel <martin dot partel at gmail dot com>
* Use `utimensat` to support settings mtime/atime on symlinks,
diff --git a/configure.ac b/configure.ac
index 01c8248..9f7f714 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([bindfs],[1.12.3],[martin.partel@gmail.com])
+AC_INIT([bindfs],[1.12.4],[martin.partel@gmail.com])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADERS([config.h])
diff --git a/src/bindfs.c b/src/bindfs.c
index 67722a3..e94402d 100644
--- a/src/bindfs.c
+++ b/src/bindfs.c
@@ -254,6 +254,7 @@ static int getattr_common(const char *procpath, struct stat *stbuf)
if the user asked for that */
if (settings.ctime_from_mtime) {
#ifdef HAVE_STAT_NANOSEC
+ // TODO: does this work on OS X?
stbuf->st_ctim = stbuf->st_mtim;
#else
stbuf->st_ctime = stbuf->st_mtime;