* syscalls.cc (statfs): Use path_conv method to convert input path.
This commit is contained in:
parent
2a1a9785eb
commit
00edcbb0cb
@ -1,3 +1,7 @@
|
|||||||
|
Tue Jul 25 21:50:42 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* syscalls.cc (statfs): Use path_conv method to convert input path.
|
||||||
|
|
||||||
Tue Jul 25 21:40:51 2000 Christopher Faylor <cgf@cygnus.com>
|
Tue Jul 25 21:40:51 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* syscalls.cc (_link): Avoid extraneous call to
|
* syscalls.cc (_link): Avoid extraneous call to
|
||||||
|
@ -1646,15 +1646,13 @@ extern "C"
|
|||||||
int
|
int
|
||||||
statfs (const char *fname, struct statfs *sfs)
|
statfs (const char *fname, struct statfs *sfs)
|
||||||
{
|
{
|
||||||
char full_path[MAX_PATH];
|
|
||||||
|
|
||||||
if (!sfs)
|
if (!sfs)
|
||||||
{
|
{
|
||||||
set_errno (EFAULT);
|
set_errno (EFAULT);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
cygwin_conv_to_full_win32_path (fname, full_path);
|
|
||||||
|
|
||||||
|
path_conv full_path(fname, PC_SYM_FOLLOW | PC_FULL);
|
||||||
char *root = rootdir (full_path);
|
char *root = rootdir (full_path);
|
||||||
|
|
||||||
syscall_printf ("statfs %s", root);
|
syscall_printf ("statfs %s", root);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user