X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffutimens.c;h=0fe8a0a8b1ef992afc4bb27a59d2bb80c2b30866;hb=fa6f00004c5ea9f4b341a7c60db177a7419f06aa;hp=f2537470503a0b35f16da671c9151824e8a31e5a;hpb=959d9cb463d992f9c5cc2fbeb54bf12eee2346f7;p=gnulib.git diff --git a/lib/futimens.c b/lib/futimens.c index f25374705..0fe8a0a8b 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-2011 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 @@ -25,13 +25,13 @@ /* Set the access and modification time stamps of FD to be TIMESPEC[0] and TIMESPEC[1], respectively. Fail with ENOSYS on systems without futimes (or equivalent). - If TIMESPEC is null, set theh time stamps to the current time. + If TIMESPEC is null, set the time stamps to the current time. Return 0 on success, -1 (setting errno) on failure. */ int -futimens (int fd, const struct timespec times[2]) +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); }