summaryrefslogtreecommitdiff
path: root/winsup/cygwin/path.h
diff options
context:
space:
mode:
authorscottc <scottc>2002-07-26 19:03:36 +0000
committerscottc <scottc>2002-07-26 19:03:36 +0000
commit67463a0fb644ed2527582cf6c45d8d0d6ddd46c0 (patch)
tree39fa1d7eae56099bef46ebceb55eb3c935433117 /winsup/cygwin/path.h
parent1e647cb6bd5bc46f4311d1f9a600edb9d45a1fb1 (diff)
downloadgdb-67463a0fb644ed2527582cf6c45d8d0d6ddd46c0.tar.gz
Merged changes from HEAD
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r--winsup/cygwin/path.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index 3d9b86c150f..f9f55035e78 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -70,6 +70,7 @@ struct fs_info
class path_conv
{
char path[MAX_PATH];
+ DWORD fileattr;
fs_info fs;
void add_ext_from_sym (symlink_info&);
public:
@@ -79,7 +80,6 @@ class path_conv
int error;
DWORD devn;
int unit;
- DWORD fileattr;
BOOL case_clash;
char *normalized_path;
@@ -138,8 +138,8 @@ class path_conv
check (src, opt | PC_NULLEMPTY, suffixes);
}
- path_conv (): path_flags (0), known_suffix (NULL), error (0), devn (0),
- unit (0), fileattr (INVALID_FILE_ATTRIBUTES),
+ path_conv (): fileattr (INVALID_FILE_ATTRIBUTES), path_flags (0),
+ known_suffix (NULL), error (0), devn (0), unit (0),
normalized_path (NULL) {path[0] = '\0';}
inline char *get_win32 () { return path; }