X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffutimens.c;h=96c0b73e07ee515417fe61214f7189b7b836ba67;hb=6a0fd2e2d7d6a7e787ada21ffbe5f8ac0e3a06f1;hp=031a464359ad2fa02fcf0cd46a86daa371a75aaa;hpb=b7be78fd0c455acefbdf32618c2f6488915c1a33;p=gnulib.git diff --git a/lib/futimens.c b/lib/futimens.c index 031a46435..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 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 @@ -32,6 +32,6 @@ 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.26. */ - return fdutimens (NULL, fd, times); + older than 2.6.32. */ + return fdutimens (fd, NULL, times); }