X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffutimens.c;h=96c0b73e07ee515417fe61214f7189b7b836ba67;hb=95886da0b417a14882bb47bf4765f7af450d51da;hp=ff7c7b4d367caa4071eb6a8416b74a51d3e876bd;hpb=b2e2010c7c902235b5efb5bd3c6529f61b093aa4;p=gnulib.git diff --git a/lib/futimens.c b/lib/futimens.c index ff7c7b4d3..96c0b73e0 100644 --- a/lib/futimens.c +++ b/lib/futimens.c @@ -1,5 +1,5 @@ /* Set the access and modification time of an open fd. - Copyright (C) 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,5 +33,5 @@ futimens (int fd, struct timespec const times[2]) /* fdutimens also works around bugs in native futimens, when running with glibc compiled against newer headers but on a Linux kernel older than 2.6.32. */ - return fdutimens (NULL, fd, times); + return fdutimens (fd, NULL, times); }