Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-10-14 19:49:13 +0400
committerChristopher Faylor <me@cgf.cx>2001-10-14 19:49:13 +0400
commit48372ea6f139576feaccd942d7674d06abd3c396 (patch)
tree62aa2aadc0d8d93951ddd42498b12e9f7efca84b /winsup/cygwin/dtable.cc
parent611d92e24c092849635b8395ec97e9c7140a6324 (diff)
* dtable.cc (dtable::build_fhandler_from_name): Use PC_FULL to determine path
name. * fork.cc (fork_parent): Correct the "unable to allocate forker_finished event" error message. It named the wrong event before.
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r--winsup/cygwin/dtable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc
index e63bad970..ff1b0f065 100644
--- a/winsup/cygwin/dtable.cc
+++ b/winsup/cygwin/dtable.cc
@@ -244,7 +244,7 @@ fhandler_base *
dtable::build_fhandler_from_name (int fd, const char *name, HANDLE handle,
path_conv& pc, unsigned opt, suffix_info *si)
{
- pc.check (name, opt | PC_NULLEMPTY, si);
+ pc.check (name, opt | PC_NULLEMPTY | PC_FULL, si);
if (pc.error)
{
set_errno (pc.error);