This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A patch for alpha


Hi,

This is a typo.

-- 
H.J. Lu (hjl@gnu.org)
---
Sat Oct 24 18:07:58 1998  H.J. Lu  <hjl@gnu.org>

	* sysdeps/unix/sysv/linux/alpha/pathconf.c (__pathconf): Fix
	a typo.

Index: sysdeps/unix/sysv/linux/alpha/pathconf.c
===================================================================
RCS file: /home/work/cvs/gnu/glibc/sysdeps/unix/sysv/linux/alpha/pathconf.c,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 pathconf.c
--- pathconf.c	1998/10/23 21:15:28	1.1.1.2
+++ pathconf.c	1998/10/24 19:32:19
@@ -51,7 +51,7 @@ __pathconf (const char *path, int name)
       struct statfs fsbuf;
 
       /* Determine the filesystem type.  */
-      if (__statfs (fd, &fsbuf) < 0)
+      if (__statfs (path, &fsbuf) < 0)
 	/* not possible, return the default value.  */
 	return LINK_MAX;
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]