X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffutimens.c;h=e3b2302e5fd9d724dc17075100cb80a80554eb97;hb=dd5c6076e60de0237ab75d5a3a77070231d6c0fd;hp=e93ffc470a9f46e29b064f38da5a254eb51eb4a7;hpb=9a669cf64253a2b2149d7f7cc5e0664c1bc7dda9;p=gnulib.git diff --git a/lib/futimens.c b/lib/futimens.c index e93ffc470..e3b2302e5 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 Free Software Foundation, Inc. + Copyright (C) 2009-2012 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); }