* fhandler_process.cc (fhandler_process::open): Allow opening of

/proc/<pid>/fd for reading.
	* fhandler_registry.cc (fhandler_registry::open): Ditto for registry
	keys.
This commit is contained in:
Corinna Vinschen
2005-08-08 15:33:32 +00:00
parent 6e8cac2638
commit af925fe4fa
3 changed files with 19 additions and 7 deletions

View File

@ -293,9 +293,8 @@ fhandler_process::open (int flags, mode_t mode)
}
if (process_file_no == PROCESS_FD)
{
set_errno (EISDIR);
res = 0;
goto out;
flags |= O_DIROPEN;
goto success;
}
if (flags & O_WRONLY)
{