From: Ulrich Drepper Date: Tue, 28 Sep 2004 07:46:43 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/fedora-glibc-20040929T0821~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=067fff20b7f3df47df9c5143c9b9b13f5c3547e5;p=thirdparty%2Fglibc.git Update. 2004-09-28 Jakub Jelinek * io/utime.h (utime): Allow second argument to be NULL. --- diff --git a/ChangeLog b/ChangeLog index 8e217e57c60..9302f2a777b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-09-28 Jakub Jelinek + + * io/utime.h (utime): Allow second argument to be NULL. + 2004-09-28 Ulrich Drepper * sysdeps/posix/getaddrinfo.c (gaih_inet): If NAME is a numerical IP diff --git a/io/utime.h b/io/utime.h index 4b861451bcc..dd5d2657088 100644 --- a/io/utime.h +++ b/io/utime.h @@ -45,7 +45,7 @@ struct utimbuf *FILE_TIMES. If FILE_TIMES is NULL, set them to the current time. */ extern int utime (__const char *__file, __const struct utimbuf *__file_times) - __THROW __nonnull ((1, 2)); + __THROW __nonnull ((1)); __END_DECLS