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-05-31 09:25:46 +0400
committerChristopher Faylor <me@cgf.cx>2001-05-31 09:25:46 +0400
commitecfb6f11bcfe614f890d7f9f5e6633b2178c45a4 (patch)
treefdc2f7012c9ff19d85b00b710af5ae84e7a3fe84 /winsup/cygwin/ntea.cc
parentb70261ef60e95d7d3db2b4246f2f7da932643d33 (diff)
* path.cc (chdir): Always send unsigned chars to isspace since newlib's isspace
doesn't deal well with "negative" chars. * fhandler.cc (fhandler_disk_file::open): Propagate remote status of file garnered from path_conv. Move #! checking to fstat. (fhandler_disk_file::fstat): Reorganize st_mode setting to eliminate duplication. Move check for #! here from fhandler::open. * fhandler.h (fhandler_base::isremote): New method. (fhandler_base::set_isremote): Ditto. (fhandler_base::set_execable_p): Also record "don't care if executable state". (fhandler_base::dont_care_if_execable): New method. * path.cc (path_conv::check): Clear new flags. Appropriately set vol_flags, drive_type, and is_remote_drive. * path.h: Add new flags and methods for manipulating them. * syscalls.cc (_unlink): Use isremote() to determine if a path is remote rather than calling GetDriveType. (stat_worker): Ditto. * security.cc (get_file_attribute): Or attribute with result of NTReadEA to be consistent with get_nt_attribute.
Diffstat (limited to 'winsup/cygwin/ntea.cc')
-rw-r--r--winsup/cygwin/ntea.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/ntea.cc b/winsup/cygwin/ntea.cc
index 2c9df4ce6..85cc4187f 100644
--- a/winsup/cygwin/ntea.cc
+++ b/winsup/cygwin/ntea.cc
@@ -86,7 +86,7 @@ int __stdcall
NTReadEA (const char *file, const char *attrname, char *attrbuf, int len)
{
/* return immediately if NTEA usage is turned off */
- if (! allow_ntea)
+ if (!allow_ntea)
return FALSE;
HANDLE hFileSource;
@@ -257,7 +257,7 @@ BOOL __stdcall
NTWriteEA (const char *file, const char *attrname, char *buf, int len)
{
/* return immediately if NTEA usage is turned off */
- if (! allow_ntea)
+ if (!allow_ntea)
return TRUE;
HANDLE hFileSource;