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>2005-05-13 19:46:07 +0400
committerChristopher Faylor <me@cgf.cx>2005-05-13 19:46:07 +0400
commit063f1df2aa2689d45fd7fd7bd8445031338ec9cb (patch)
treed1dc01f28241869f35ad8c728ccaae9e0732d3c5 /winsup/cygwin/sec_acl.cc
parenteb6cd95fecef02c261ef266161f8dff6924efa4d (diff)
Remove PC_FULL from path_conv usage throughout.
* path.h (enum pathconv_arg): Change PC_FULL to PC_NOUILL. * path.cc (path_conv::check): Test for PC_NOFULL rather than !PC_FULL. (cygwin_conv_to_win32_path): Use PC_NOFULL to force non-absolute path.
Diffstat (limited to 'winsup/cygwin/sec_acl.cc')
-rw-r--r--winsup/cygwin/sec_acl.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/sec_acl.cc b/winsup/cygwin/sec_acl.cc
index 268f378db..70c6c3c23 100644
--- a/winsup/cygwin/sec_acl.cc
+++ b/winsup/cygwin/sec_acl.cc
@@ -412,8 +412,7 @@ acl_worker (const char *path, int cmd, int nentries, __aclent32_t *aclbufp,
{
extern suffix_info stat_suffixes[];
int res = -1;
- fhandler_base *fh = build_fh_name (path, NULL, fmode | PC_FULL,
- stat_suffixes);
+ fhandler_base *fh = build_fh_name (path, NULL, fmode, stat_suffixes);
if (fh->error ())
{
debug_printf ("got %d error from build_fh_name", fh->error ());