[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1290 - trunk/glibc-2.3-head/sysdeps/kfreebsd



Author: ps-guest
Date: 2006-03-02 12:30:54 +0000 (Thu, 02 Mar 2006)
New Revision: 1290

Modified:
   trunk/glibc-2.3-head/sysdeps/kfreebsd/open.c
Log:
forward fix for glibc 2.4:  __futimes() is hidden -> not available within libpthread



Modified: trunk/glibc-2.3-head/sysdeps/kfreebsd/open.c
===================================================================
--- trunk/glibc-2.3-head/sysdeps/kfreebsd/open.c	2006-03-02 11:39:33 UTC (rev 1289)
+++ trunk/glibc-2.3-head/sysdeps/kfreebsd/open.c	2006-03-02 12:30:54 UTC (rev 1290)
@@ -25,7 +25,7 @@
 #include <sys/time.h>
 #include <sysdep-cancel.h>
 
-extern int __futimes (int fd, const struct timeval tvp[2]);
+extern int futimes (int fd, const struct timeval tvp[2]);
 
 int
 __libc_open (const char *file, int oflag, ...)
@@ -67,7 +67,7 @@
 	      tv[0].tv_sec = statbuf.st_atime;
 	      tv[0].tv_usec = 0;
 
-	      __futimes (fd, tv);
+	      futimes (fd, tv);
 	    }
 	}
       __set_errno (saved_errno);



Reply to: