From: Ben Gras Date: Wed, 27 Jul 2005 18:48:48 +0000 (+0000) Subject: Took fchdir out of the user library, it's suspected of being buggy (in FS) X-Git-Tag: v3.1.0~503 X-Git-Url: http://zhaoyanbai.com/repos/dnssec-verify.html?a=commitdiff_plain;h=3f4e0a5f59eb6f5225710b006e9ab144c9350663;p=minix.git Took fchdir out of the user library, it's suspected of being buggy (in FS) --- diff --git a/lib/posix/_chdir.c b/lib/posix/_chdir.c index 34c177a6b..9bcbeed70 100755 --- a/lib/posix/_chdir.c +++ b/lib/posix/_chdir.c @@ -11,6 +11,7 @@ _CONST char *name; return(_syscall(FS, CHDIR, &m)); } +#if 0 PUBLIC int fchdir(fd) int fd; { @@ -19,4 +20,5 @@ int fd; m.m1_i1 = fd; return(_syscall(FS, FCHDIR, &m)); } +#endif