From 2dd21704d63c4e7567695a9e43dc1631b930efe2 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Fri, 17 Sep 2010 15:54:59 -0600 Subject: maint: update to latest gnulib * gnulib: Update to latest. * src/copy.c (copy_reg): Use fdutimens instead of gl_futimens. * src/touch.c (touch): Adjust parameter order. * tests/init.sh: Resync from upstream. --- src/touch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/touch.c') diff --git a/src/touch.c b/src/touch.c index 290f74300..6358b893c 100644 --- a/src/touch.c +++ b/src/touch.c @@ -163,7 +163,7 @@ touch (const char *file) t = NULL; } - ok = (fdutimensat (AT_FDCWD, (fd == STDOUT_FILENO ? NULL : file), fd, t, + ok = (fdutimensat (fd, AT_FDCWD, (fd == STDOUT_FILENO ? NULL : file), t, (no_dereference && fd == -1) ? AT_SYMLINK_NOFOLLOW : 0) == 0); -- cgit v1.2.3-54-g00ecf