1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* posix/TESTS: Fix expected result for test cases with * with no
	leading expression.
This commit is contained in:
Ulrich Drepper
2000-01-18 10:53:15 +00:00
parent 6e9b72d3ab
commit c7e85d0c08
6 changed files with 23 additions and 14 deletions

View File

@ -18,8 +18,12 @@
Boston, MA 02111-1307, USA. */
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <mntent.h>
#include <paths.h>
#include <string.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/statfs.h>
#include <sys/statvfs.h>
@ -30,11 +34,12 @@ statvfs (const char *file, struct statvfs *buf)
struct stat st;
/* Get as much information as possible from the system. */
if (__statfs (fd, &fsbuf) < 0)
if (__statfs (file, &fsbuf) < 0)
return -1;
#define STAT(st) stat (file, st)
#include "internal_statvfs.c"
/* We signal success if the statfs call succeeded. */
return 0;
}